-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "oceanic-voivode-vscode",
"displayName": "Oceanic Voivode",
"version": "1.0.2",
"description": "A dark theme for Visual Studio Code, inspired by the Material Oceanic theme for IntelliJ on the workbench and the Dracula theme in the editor.",
"author": "Matthew Cole",
"publisher": "OceanicVoivode",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/colematthew4/oceanic-voivode-vscode"
},
"bugs": {
"url": "https://github.com/colematthew4/oceanic-voivode-vscode/issues"
},
"engines": {
"vscode": "^1.58.0"
},
"icon": "assets/icon.png",
"keywords": [
"oceanic",
"dracula",
"theme"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Oceanic Voivode",
"id": "oceanic-voivode",
"uiTheme": "vs-dark",
"path": "./theme/oceanic-voivode.json"
}
]
},
"extensionDependencies": [
"pkief.material0icon-theme",
"jenkeny2011.string-highlight"
],
"scripts": {
"build": "ts-node src/build.ts",
"pack": "vsce package",
"publish": "vsce publish --githubBranch main"
},
"devDependencies": {
"@types/js-yaml": "^4.0.2",
"@types/node": "^16.4.13",
"@types/tinycolor2": "^1.4.3",
"js-yaml": "^4.1.0",
"mocha": "^9.0.3",
"tinycolor2": "^1.4.2",
"ts-node": "^10.2.0",
"vsce": "^1.96.1"
}
}