-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 3.74 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "theme-chimera",
"displayName": "Chimera Theme",
"description": "A dark theme for Visual Studio Code inspired by the Dracula, Dark, and Dark+ themes",
"version": "0.16.0",
"publisher": "roydukkey",
"author": {
"name": "roydukkey",
"email": "[email protected]",
"url": "http://changelog.me"
},
"license": "MIT",
"homepage": "https://github.com/roydukkey/chimera-theme/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/roydukkey/chimera-theme.git"
},
"bugs": {
"url": "https://github.com/roydukkey/chimera-theme/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/roydukkey"
},
"keywords": [
"chimera",
"color-theme",
"dark",
"dracula",
"theme"
],
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#1e1f29",
"theme": "dark"
},
"icon": "icon.png",
"browser": "./dist/extension.js",
"contributes": {
"themes": [
{
"label": "Chimera+",
"uiTheme": "vs-dark",
"path": "./dist/chimera-plus.json"
},
{
"label": "Chimera",
"uiTheme": "vs-dark",
"path": "./dist/chimera.json"
}
],
"configuration": {
"title": "Chimera Theme",
"properties": {
"theme-chimera.plus.contrastConstants": {
"type": "boolean",
"scope": "machine",
"default": false,
"description": "Contrast constants and enum members from variables and parameters."
}
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"activationEvents": [
"onStartupFinished"
],
"qna": false,
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.0",
"vscode": "^1.64.0"
},
"devDependencies": {
"@roydukkey/eslint-config": "^1.0.11",
"@types/color": "^3.0.3",
"@types/color-string": "^1.5.2",
"@types/dot-object": "^2.1.2",
"@types/node": "^17.0.17",
"@types/vscode": "^1.64.0",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vscode/test-web": "^0.0.22",
"clean-package": "^2.1.1",
"color": "^4.2.1",
"color-string": "^1.9.0",
"cspell": "^5.18.4",
"dot-object": "^2.1.4",
"eslint": "^8.9.0",
"eslint-plugin-tsdoc": "^0.2.14",
"process": "^0.11.10",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"type-fest": "^2.12.2",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"clean": "node -e \"['./dist', './.vscode-test-web', './$npm_package_name-$npm_package_version.vsix'].forEach((path) => fs.rmSync(path, { recursive: true, force: true }));\"",
"lint": "yarn lint:spelling && yarn lint:es",
"lint:es": "eslint ./src --ext .ts",
"lint:spelling": "cspell --config './.vscode/cSpell.json' --no-progress '**/{.*/**/,.*/**/.,,.}*'",
"build": "yarn clean && yarn build:theme && yarn build:extension",
"build:theme": "ts-node ./build.ts",
"build:extension": "webpack",
"test": "yarn build --watch",
"test:browser": "yarn build && vscode-test-web --extensionDevelopmentPath=. .",
"vscode:prepublish": "yarn lint && yarn build --mode production --devtool hidden-source-map && clean-package",
"vsce:has-release-version": "node -e \"process.exit(Math.abs('$npm_package_version'.split('.')[1]) % 2 === 1);\"",
"vsce:package": "vsce package && clean-package restore",
"vsce:publish": "yarn vsce:has-release-version && vsce publish && clean-package restore",
"vsce:publish:pre": "yarn vsce:has-release-version || vsce publish --pre-release && clean-package restore"
},
"clean-package": {
"extends": "clean-package/common",
"indent": "\t",
"remove": [
"scripts"
]
},
"eslintConfig": {
"extends": [
"@roydukkey/eslint-config"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"ignorePatterns": [
"dist/*",
"out/*"
]
}
}