-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vs-palette",
"description": "Palette of Colors",
"version": "0.0.5",
"publisher": "Websublime",
"icon": "icon.png",
"engines": {
"vscode": "^1.50.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"activationEvents": [
"onView:palette.colorsView",
"onWebviewPanel:palette.webColorsView",
"onCommand:palette.addColor",
"onCommand:palette.clearColors"
],
"repository": {
"type": "git",
"url": "https://github.com/miguelramos/vs-palette"
},
"main": "./out/extension.js",
"contributes": {
"views": {
"explorer": [
{
"type": "webview",
"id": "palette.colorsView",
"name": "Palette Colors"
}
]
},
"commands": [
{
"command": "palette.addColor",
"category": "Palette Colors",
"title": "Add Color",
"icon": "$(plus)"
},
{
"command": "palette.clearColors",
"category": "Palette Colors",
"title": "Clear Colors",
"icon": "$(clear-all)"
}
],
"menus": {
"view/title": [
{
"command": "palette.addColor",
"group": "navigation",
"when": "view == palette.colorsView"
},
{
"command": "palette.clearColors",
"group": "navigation",
"when": "view == palette.colorsView"
}
]
}
},
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"dependencies": {},
"devDependencies": {
"@types/node": "12.12.2",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/vscode": "^1.50.0",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"ts-loader": "^7.0.5",
"typescript": "^4.0.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"terser-webpack-plugin": "^5.0.3",
"merge-options": "^3.0.3",
"vscode-codicons": "0.0.7"
}
}