-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 981 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 981 Bytes
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
{
"name": "ocean-theme",
"displayName": "Ocean Theme",
"description": "Ocean theme",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/nksaraf/ocean-theme.git"
},
"engines": {
"vscode": "^1.35.0"
},
"publisher": "nsaraf98",
"categories": [
"Themes"
],
"nodemonConfig": {
"watch": [
"src/"
]
},
"scripts": {
"vscode": "nodemon --exec babel-node src/vscode.js",
"sublime": "nodemon --exec babel-node src/sublime.js",
"local:install": "ln -s ../ocean-theme ~/.vscode-insiders/extensions/ocean-theme"
},
"contributes": {
"themes": [
{
"label": "Ocean Theme",
"uiTheme": "vs-dark",
"path": "./themes/Ocean Theme-color-theme.json"
}
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"lodash": "^4.17.11",
"nodemon": "^1.19.1"
}
}