-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
114 lines (114 loc) · 3.03 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": "one-dark-theme",
"displayName": "One Dark Theme",
"description": "One Dark theme for Visual Studio Code",
"version": "0.0.0-semantically-released",
"publisher": "mskelton",
"author": "Mark Skelton",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/one-dark/vscode-one-dark-theme.git"
},
"homepage": "https://github.com/one-dark/vscode-one-dark-theme#readme",
"bugs": {
"url": "https://github.com/one-dark/vscode-one-dark-theme/issues"
},
"keywords": [
"one-dark",
"one-dark-vivid",
"one-dark-italic",
"vscode-theme",
"vscode"
],
"scripts": {
"build": "esbuild ./src/extension.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs",
"format": "prettier --write .",
"lint": "eslint .",
"theme": "ts-node ./generator/index.ts",
"theme:watch": "nodemon ./generator/index.ts",
"ts": "tsc",
"watch": "npm run build -- --sourcemap --watch",
"vscode:prepublish": "npm run theme && npm run build -- --minify"
},
"engines": {
"vscode": "^1.63.1"
},
"categories": [
"Themes"
],
"icon": "static/icon.png",
"galleryBanner": {
"color": "#2d323b",
"theme": "dark"
},
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"ui",
"workspace"
],
"main": "./dist/main.js",
"browser": "./dist/main.js",
"contributes": {
"themes": [
{
"label": "One Dark",
"uiTheme": "vs-dark",
"path": "./themes/one-dark.json"
},
{
"label": "One Dark Vivid",
"uiTheme": "vs-dark",
"path": "./themes/one-dark-vivid.json"
}
],
"configuration": {
"title": "One Dark",
"properties": {
"oneDark.bold": {
"type": "boolean",
"default": false,
"markdownDescription": "Uses bold font for certain language keywords."
},
"oneDark.italic": {
"type": "boolean",
"default": true,
"description": "Uses italic font for language keywords and comments."
},
"oneDark.vivid": {
"type": "boolean",
"default": false,
"deprecationMessage": "Use the One Dark Vivid color theme instead.",
"markdownDescription": "Uses the [vivid](https://atom.io/themes/one-dark-vivid-syntax) color palette."
}
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@mskelton/eslint-config": "^7.1.0",
"@types/node": "^17.0.8",
"@types/vscode": "^1.63.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"eslint-plugin-sort": "^2.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"semantic-release-vsce": "^3.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"vsce": "^2.6.3"
}
}