-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
114 lines (114 loc) · 2.68 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": "base16-generator",
"displayName": "Base16 Theme Generator",
"description": "All Base16 themes available on the fly",
"version": "1.19.1",
"publisher": "golf1052",
"keywords": [
"base16"
],
"icon": "images/logo.png",
"license": "See license in LICENSE",
"homepage": "https://github.com/golf1052/base16-generator",
"repository": {
"type": "git",
"url": "https://github.com/golf1052/base16-generator.git"
},
"bugs": {
"url": "https://github.com/golf1052/base16-generator/issues",
"email": "golf1052@msn.com"
},
"galleryBanner": {
"color": "#8fa1b3",
"theme": "light"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Themes"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"themes": [
{
"label": "Base16 Default Dark",
"uiTheme": "vs-dark",
"path": "./themes/base16-default-dark.json"
}
],
"commands": [
{
"category": "Base16",
"title": "Activate theme",
"command": "base16.generator.activateTheme"
},
{
"category": "Base16",
"title": "Deactivate theme",
"command": "base16.generator.deactivateTheme"
},
{
"category": "Base16",
"title": "Activate all themes",
"command": "base16.generator.activateAllThemes"
},
{
"category": "Base16",
"title": "Deactivate all themes",
"command": "base16.generator.deactivateAllThemes"
}
],
"configuration": {
"properties": {
"base16.generator.activatedThemes": {
"default": [
"base16-default-dark"
],
"description": "List of Base 16 themes that are active",
"items": {
"type": "string"
},
"scope": "application",
"type": "array"
}
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"jsonc-parser": "^3.0.0"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/js-yaml": "^4.0.5",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.47",
"@types/rimraf": "^3.0.2",
"@types/vscode": "^1.22.0",
"color": "^4.2.3",
"js-yaml": "^4.1.0",
"mkdirp": "^1.0.4",
"mocha": "^10.0.0",
"recursive-copy": "^2.0.14",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vscode-test": "^1.4.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}