-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"version": "0.4.9",
"name": "schoero-dark",
"displayName": "schoero-dark",
"description": "A personal dark theme",
"license": "MIT",
"author": "Roger Schönbächler",
"repository": {
"type": "git",
"url": "https://github.com/schoero/schoero-dark.git"
},
"bugs": {
"url": "https://github.com/schoero/schoero-dark/issues"
},
"scripts": {
"eslint": "node_modules/.bin/eslint --ext .ts,.tsx,.js,.jsx,.json,.jsonc,.yml,.md ./",
"eslint:ci": "npm run eslint -- --max-warnings 0",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run markdownlint",
"lint:ci": "npm run eslint:ci && npm run markdownlint:ci",
"lint:fix": "npm run eslint:fix && npm run markdownlint:fix",
"markdownlint": "node_modules/.bin/markdownlint-cli2 '**/*.md' '#node_modules'",
"markdownlint:ci": "npm run markdownlint",
"markdownlint:fix": "node_modules/.bin/markdownlint-cli2-fix '**/*.md' '#node_modules'",
"postversion": "git push && git push --tags",
"spellcheck": "node_modules/.bin/cspell lint",
"spellcheck:ci": "npm run spellcheck -- --no-progress"
},
"engines": {
"vscode": "^1.65.0"
},
"devDependencies": {
"@schoero/configs": "^1.0.13",
"cspell": "^8.8.3",
"eslint": "^8.57.0",
"markdownlint": "^0.34.0",
"npm": "^10.8.0"
},
"keywords": [
"atom",
"vscode",
"theme",
"dark"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "schoero-dark",
"path": "./themes/schoero-dark-color-theme.json",
"uiTheme": "vs-dark"
}
]
},
"icon": "assets/icon.png",
"publisher": "schoero"
}