-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "theme-tinaciousdesign",
"displayName": "Tinacious Design theme",
"description": "🌈 A dark theme and a light theme with fun colours.",
"version": "2.4.0",
"publisher": "tinaciousdesign",
"repository": "https://github.com/tinacious/vscode-tinacious-design-syntax",
"scripts": {
"publish": "vsce publish",
"json": "node ./scripts/generate_json_support.js"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Themes"
],
"keywords": [
"bright",
"fun",
"pink",
"accessible",
"a11y"
],
"contributes": {
"themes": [
{
"label": "Tinacious Design",
"uiTheme": "vs-dark",
"path": "/themes/Tinacious Design-color-theme.json"
},
{
"label": "Tinacious Design (Light)",
"uiTheme": "vs",
"path": "./themes/Tinacious Design (Light)-color-theme.json"
},
{
"label": "Tinacious Design (legacy, 2016)",
"uiTheme": "vs-dark",
"path": "./themes/Tinacious-Design.tmTheme"
},
{
"label": "Tinacious Design (Light) (legacy, 2017)",
"uiTheme": "vs",
"path": "./themes/Tinacious-Design-Light.tmTheme"
},
{
"label": "Tinacious Design (High Contrast)",
"uiTheme": "vs-dark",
"path": "/themes/Tinacious-Design-High-Contrast-color-theme.json"
}
]
},
"icon": "icon.png",
"devDependencies": {
"generator-code": "^1.2.12",
"vsce": "^1.83.0",
"yo": "^3.1.1"
}
}