-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.89 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
{
"name": "colorvariabletracker",
"displayName": "colorVariableTracker",
"description": "Tracks global color variables.",
"publisher": "KumJungMinlux",
"icon": "./media/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/KumJungMin/colorvariabletracker"
},
"keywords": [
"color",
"variable",
"tracker"
],
"version": "1.0.2",
"author": {
"name": "KumJungMin",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:colorVariableTrackerSidebar"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "colorVariableTrackerView",
"title": "Color Variable Tracker",
"icon": "media/icon.svg"
}
]
},
"views": {
"colorVariableTrackerView": [
{
"type": "webview",
"id": "colorVariableTrackerSidebar",
"icon": "media/icon.svg",
"name": "Color Variable Tracker",
"contextualTitle": "CVT"
}
]
},
"commands": [
{
"command": "colorvariabletracker.register",
"title": "register"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"sinon": "^17.0.1"
}
}