-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "style-vars-panel",
"displayName": "Style vars panel",
"description": "Replacing static CSS values with your closest variable is now super easy!",
"version": "0.0.6",
"publisher": "tomesterez",
"repository": {
"type": "git",
"url": "git+https://github.com/testerez/vscode-style-vars-panel.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.showStyleVarsPanel"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.showStyleVarsPanel",
"title": "Show style vars panel"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"publish": "vsce publish"
},
"dependencies": {
"@types/string_score": "^0.1.27",
"color-diff": "^1.0.0",
"color-string": "^1.2.0",
"lodash": "^4.16.6",
"nearest-color": "^0.4.0",
"string_score": "^0.1.22"
},
"devDependencies": {
"@types/lodash": "^4.14.38",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.0.3",
"vsce": "^1.18.0",
"vscode": "^1.0.0"
}
}