-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 1.86 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
{
"name": "zokugun-theme",
"displayName": "Zokugun Themes",
"description": "Zokugun Themes for Visual Studio Code",
"version": "0.6.2",
"author": {
"name": "Baptiste Augrain",
"email": "[email protected]"
},
"publisher": "zokugun",
"license": "MIT",
"homepage": "https://github.com/zokugun/theme-zokugun-vscode",
"repository": {
"type": "git",
"url": "https://github.com/zokugun/theme-zokugun-vscode.git"
},
"bugs": {
"url": "https://github.com/zokugun/theme-zokugun-vscode/issues"
},
"engines": {
"vscode": "^1.23.0"
},
"main": "./lib/index.js",
"browser": "./lib/index.js",
"scripts": {
"bundle": "webpack",
"commit": "cz",
"compile": "tsc -p src",
"lint": "xo",
"prepare": "husky install; fixpack || true",
"release": "release-it",
"vscode:prepublish": "npm run compile && npm run bundle",
"watch": "tsc-watch -p src --onSuccess 'npm run bundle'"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "^16.11.45",
"@types/vscode": "^1.23.0",
"commitizen": "^4.2.5",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"release-it": "^15.3.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"xo": "^0.48.0"
},
"activationEvents": [
"onStartupFinished"
],
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"themes": [
{
"label": "Zokugun Obsidium",
"uiTheme": "vs-dark",
"path": "./themes/obsidium.json"
}
]
},
"extensionKind": [
"ui",
"workspace"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#1c1e20",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"dark",
"theme",
"zokugun"
]
}