-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.92 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.92 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
81
82
83
84
85
86
87
88
89
90
{
"name": "bootstrap-vscode-theme",
"displayName": "Bootstrap Theme",
"description": "Bootstrap theme for Shiki, VS Code, and more",
"version": "0.0.10",
"publisher": "bootstrap",
"icon": "icon.png",
"galleryBanner": {
"color": "#7740ff",
"theme": "dark"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/twbs/bootstrap-vscode-theme.git"
},
"bugs": {
"url": "https://github.com/twbs/bootstrap-vscode-theme/issues"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"bootstrap",
"light",
"dark",
"vibrant"
],
"contributes": {
"themes": [
{
"label": "Bootstrap Light",
"uiTheme": "vs",
"path": "./themes/bootstrap-light.json"
},
{
"label": "Bootstrap Dark",
"uiTheme": "vs-dark",
"path": "./themes/bootstrap-dark.json"
},
{
"label": "Bootstrap Light Vibrant",
"uiTheme": "vs",
"path": "./themes/bootstrap-light-vibrant.json"
},
{
"label": "Bootstrap Dark Vibrant",
"uiTheme": "vs-dark",
"path": "./themes/bootstrap-dark-vibrant.json"
}
]
},
"scripts": {
"build": "tsx src/build.ts",
"test": "npm run build && tsx src/test.ts",
"start": "nodemon --watch src --ext ts --exec npm run build",
"package": "vsce package",
"prepublishOnly": "npm run build"
},
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./themes/*.json": "./themes/*.json"
},
"files": [
"index.js",
"index.d.ts",
"themes/",
"icon.png",
"README.md",
"LICENSE.md"
],
"devDependencies": {
"nodemon": "^3.1.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vsce": "^2.15.0"
},
"publishConfig": {
"access": "public"
}
}