-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "workspace-color",
"displayName": "Workspace Color",
"description": "Change an editor's color depending on the active folder in workspace.",
"version": "1.0.0",
"publisher": "byeful",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"repository": {
"type": "git",
"url": "https://github.com/verfault/vscode-workspace-color"
},
"categories": [
"Other",
"Themes",
"Visualization"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "workspaceColor.setColor",
"title": "Workspace Color: Set Color"
},
{
"command": "workspaceColor.clearColor",
"title": "Workspace Color: Clear Color"
}
]
},
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p . --outDir out",
"pretest": "yarn run test-compile && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}