-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.45 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
{
"name": "alchemy",
"displayName": "Alchemy Theme",
"homepage": "https://github.com/thgmhz/alchemy-theme",
"description": "A dark theme for VS Code alchemists 🔥",
"author": "Thiago Munhoz <thgmhz@gmail.com>",
"publisher": "thgmhz",
"version": "1.1.0",
"engines": {
"vscode": "^1.78.0"
},
"maintainers": [
"Thiago Munhoz <thgmhz@gmail.com>"
],
"categories": [
"Themes"
],
"keywords": [
"Theme",
"Dark Theme",
"Alchemy"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#17181A",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/thgmhz/alchemy-theme"
},
"bugs": {
"url": "https://github.com/thgmhz/alchemy-theme/issues"
},
"contributes": {
"themes": [
{
"label": "Alchemy Theme",
"path": "./themes/alchemy-theme.json",
"uiTheme": "vs-dark"
}
]
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"scripts": {
"prepare": "husky install",
"package": "mkdir -p ./bin && vsce package -o ./bin/alchemy-theme.vsix",
"vscode:prepublish": "npm run build:fetch",
"vscode:publish": "vsce publish",
"postinstall": "npm run fetch:reference",
"dev": "DEBUG_VSCODE=1 ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"exec:file": "ts-node -r tsconfig-paths/register",
"build": "npm run exec:file ./src/index.ts",
"build:fetch": "npm run fetch:reference && npm run build",
"fetch:reference": "npm run exec:file ./src/scripts/fetch-theme-colors-reference",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"@types/node": "^17.0.45",
"@types/to-json-schema": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/vsce": "^2.21.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^4.2.1",
"husky": "^7.0.4",
"json-schema-to-typescript": "^10.1.5",
"lint-staged": "^12.5.0",
"prettier": "^2.8.8",
"to-json-schema": "^0.2.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.14.2",
"typescript": "^4.9.5",
"eslint": "^7.12.1"
},
"license": "MIT"
}