-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.22 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
{
"name": "real-theme",
"displayName": "real-theme",
"description": "Use real theme for VS Code",
"keywords": ["vscode", "plugin", "theme"],
"repository": {
"url": "https://github.com/LockingReal/real-theme.git"
},
"version": "0.1.2",
"publisher": "lockingreal",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Themes"
],
"icon": "images/logo.png",
"license": "MIT",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.sayHello",
"title": "Hello World"
}
],
"themes": [
{
"label": "Real Dark",
"uiTheme": "vs-dark",
"path": "./Sample_Dark.tmTheme"
},
{
"label": "Real Light",
"uiTheme": "vs",
"path": "./Sample_Light.tmTheme"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.9.4",
"@vscode/test-electron": "^2.2.3"
},
"vsce": {
"dependencies": false,
"useYarn": false
}
}