-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.89 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.89 KB
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
{
"name": "drift-theme",
"displayName": "Drift Theme",
"description": "A collection of pastel VS Code themes for dual-font setups with full ligature and italic support",
"version": "1.0.0",
"license": "MIT",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0b131f",
"theme": "dark"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Themes"
],
"keywords": [
"dark",
"light",
"pastel",
"italic",
"ligatures",
"drift",
"ocean",
"forest"
],
"contributes": {
"themes": [
{
"label": "Drift Dawn",
"uiTheme": "vs",
"path": "./themes/drift-dawn-color-theme.json"
},
{
"label": "Drift Dusk",
"uiTheme": "vs-dark",
"path": "./themes/drift-dusk-color-theme.json"
},
{
"label": "Drift Forest",
"uiTheme": "vs-dark",
"path": "./themes/drift-forest-color-theme.json"
},
{
"label": "Drift Midnight",
"uiTheme": "vs-dark",
"path": "./themes/drift-midnight-color-theme.json"
},
{
"label": "Drift Morning",
"uiTheme": "vs",
"path": "./themes/drift-morning-color-theme.json"
},
{
"label": "Drift Ocean",
"uiTheme": "vs-dark",
"path": "./themes/drift-ocean-color-theme.json"
},
{
"label": "Drift Sage",
"uiTheme": "vs",
"path": "./themes/drift-sage-color-theme.json"
},
{
"label": "Drift Shore",
"uiTheme": "vs",
"path": "./themes/drift-shore-color-theme.json"
}
]
},
"scripts": {
"build": "node scripts/build.js",
"dev": "bash scripts/dev.sh",
"test": "node scripts/build.js && node scripts/validate.js",
"validate": "node scripts/validate.js",
"install-local": "bash scripts/install-local.sh",
"package": "bash scripts/package.sh"
}
}