forked from wavebeem/vscode-theme-unoduetre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.44 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
{
"name": "theme-unoduetre",
"displayName": "Uno Due Tre",
"description": "A collection of themes with three colors each",
"version": "5.11.1",
"repository": {
"type": "git",
"url": "https://github.com/wavebeem/vscode-theme-unoduetre.git"
},
"icon": "img/icon.png",
"publisher": "wavebeem",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Uno Due Tre",
"uiTheme": "vs",
"path": "./themes/light-color-theme.json"
},
{
"label": "Uno Due Tre (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/dark-color-theme.json"
},
{
"label": "Uno Due Tre (Nature)",
"uiTheme": "vs",
"path": "./themes/nature-color-theme.json"
},
{
"label": "Uno Due Tre (Miasma)",
"uiTheme": "vs-dark",
"path": "./themes/miasma-color-theme.json"
},
{
"label": "Uno Due Tre (Bubble Gum)",
"uiTheme": "vs",
"path": "./themes/bubblegum-color-theme.json"
},
{
"label": "Uno Due Tre (Periwinkle)",
"uiTheme": "vs",
"path": "./themes/periwinkle-color-theme.json"
},
{
"label": "Uno Due Tre (Sprinkles)",
"uiTheme": "vs-dark",
"path": "./themes/sprinkles-color-theme.json"
},
{
"label": "Uno Due Tre (Midnight)",
"uiTheme": "vs-dark",
"path": "./themes/midnight-color-theme.json"
},
{
"label": "Uno Due Tre (Ocean)",
"uiTheme": "vs-dark",
"path": "./themes/ocean-color-theme.json"
}
]
},
"bugs": {
"url": "https://github.com/wavebeem/vscode-theme-unoduetre/issues"
},
"homepage": "https://github.com/wavebeem/vscode-theme-unoduetre#readme",
"scripts": {
"upgrade": "npm-check -u",
"build": "ts-node src/main.ts",
"prepackage": "rm -rf *.vsix",
"package": "npm run build && vsce package",
"load": "npm run package && code --install-extension *.vsix",
"version": "npm run build",
"postversion": "git push --follow-tags && vsce publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Brian Mock <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^15.12.2",
"ansi-colors": "^4.1.3",
"npm-check": "^5.9.2",
"typescript": "^4.3.2"
},
"__metadata": {
"id": "e18a4366-db45-4ced-ba20-d6316dc6c79b",
"publisherDisplayName": "Brian Mock",
"publisherId": "dd905317-d989-4b98-9bc3-3cc12206629d"
},
"dependencies": {
"@vscode/vsce": "^2.18.0",
"colord": "^2.9.3",
"ts-node": "^10.9.1"
}
}