-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "lightning",
"displayName": "Lightning",
"publisher": "zevross",
"icon": "assets/lightning.png",
"galleryBanner": {
"color": "#080524",
"theme": "dark"
},
"description": "An electrifying, vibrant theme.",
"version": "2.1.1",
"author": {
"name": "Zev Ross",
"email": "[email protected]",
"website": "https://zevross.dev"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Lightning",
"uiTheme": "vs-dark",
"path": "./themes/Lightning-color-theme.json"
},
{
"label": "Lightning Dark",
"uiTheme": "vs-dark",
"path": "./themes/Lightning-dark-color-theme.json"
},
{
"label": "Lightning Light",
"uiTheme": "vs",
"path": "./themes/lightning-light-color-theme.json"
},
{
"label": "Lightning Cloud",
"uiTheme": "vs",
"path": "./themes/lightning-light-alt-color-theme.json"
},
{
"label": "Lightning Material - Midnight",
"uiTheme": "vs-dark",
"path": "./themes/material-midnight-color-theme.json"
},
{
"label": "Lightning Material - Twilight",
"uiTheme": "vs-dark",
"path": "./themes/material-twilight-color-theme.json"
},
{
"label": "Lightning Material - Evening",
"uiTheme": "vs-dark",
"path": "./themes/material-evening-color-theme.json"
},
{
"label": "Lightning Material - Day",
"uiTheme": "vs",
"path": "./themes/material-day-color-theme.json"
},
{
"label": "Lightning Soft",
"uiTheme": "vs-dark",
"path": "./themes/soft-color-theme.json"
},
{
"label": "Lightning Soft - Dark",
"uiTheme": "vs-dark",
"path": "./themes/soft-dark-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/Zev18/lightning.git"
},
"homepage": "https://github.com/Zev18/lightning",
"bugs": {
"url": "https://github.com/Zev18/lightning/issues",
"email": "[email protected]"
},
"license": "MIT",
"pricing": "Free",
"private": false,
"keywords": [
"theme",
"color-theme",
"dark",
"color"
],
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js && mkdir -p build",
"prepublishOnly": "npm run build && vsce publish",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"esbuild": "^0.17.17",
"nodemon": "^2.0.22",
"vsce": "^2.15.0"
},
"dependencies": {
"color-convert": "^2.0.1",
"colors-convert": "^1.4.1",
"fs": "^0.0.1-security"
}
}