-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.8 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": "cherry-theme",
"type": "module",
"displayName": "Cherry",
"description": "Fervent Tempo battlesuit inspired Theme for VSCode",
"version": "0.2.7",
"publisher": "nullxception",
"author": {
"name": "Nauval Rizky",
"url": "https://github.com/nullxception"
},
"icon": "assets/cherry.png",
"preview": false,
"galleryBanner": {
"color": "#2A2A38",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/nullxception/cherry-vscode"
},
"bugs": {
"url": "https://github.com/nullxception/cherry-vscode/issues"
},
"homepage": "https://github.com/nullxception/cherry-vscode",
"engines": {
"vscode": "^1.51.1"
},
"license": "MIT",
"categories": [
"Themes"
],
"keywords": [
"cherry",
"flat",
"dark",
"pink",
"theme",
"color-theme"
],
"contributes": {
"themes": [
{
"label": "Cherry",
"uiTheme": "vs-dark",
"path": "./themes/base.json"
},
{
"label": "Cherry Midnight",
"uiTheme": "vs-dark",
"path": "./themes/midnight.json"
}
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@types/chroma-js": "^2.4.0",
"@types/node": "^20.1.3",
"chroma-js": "^2.1.2",
"color": "^3.1.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.3",
"vsce": "^1.100.1"
},
"scripts": {
"build": "node src/index.js",
"watch": "nodemon --watch src/index.js",
"package": "vsce package"
},
"__metadata": {
"id": "3a8988d3-d0e7-4b9e-a92c-5336c9b294c6",
"publisherDisplayName": null,
"publisherId": "88ccc272-c90c-40a2-aa42-30ab39577a0e"
}
}