-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 1.97 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": "moxer-theme",
"displayName": "Moxer Theme",
"publisher": "Equinusocio",
"description": "From the Material Theme authors...Moxer is here to brings your DX to another level.",
"version": "7.7.0",
"license": "Apache-2.0",
"author": "Mattia Astorino [@equinusocio]",
"icon": "logo.png",
"galleryBanner": {
"color": "#090A0F",
"theme": "dark"
},
"homepage": "https://github.com/moxer-theme/moxer-code",
"repository": {
"type": "git",
"url": "https://github.com/moxer-theme/moxer-code.git"
},
"bugs": {
"url": "https://github.com/moxer-theme/moxer-code/issues"
},
"extensionPack": [
"equinusocio.moxer-icons"
],
"scripts": {
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"precommit": "yarn lint",
"prebuild": "tsc src/index.ts",
"build": "node src/index.js",
"release": "git pull && standard-version --release-as minor && git push --follow-tags",
"release:major": "git pull && standard-version --release-as major && git push --follow-tags",
"update:deps": "npx npm-upgrade"
},
"engines": {
"node": "^16.0.0",
"vscode": "^1.40.0"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"VSCode",
"Themes",
"moxer",
"theme",
"equinusocio"
],
"extensionKind": [
"ui"
],
"contributes": {
"themes": [
{
"label": "Moxer",
"uiTheme": "vs-dark",
"path": "./build/Moxer.json"
},
{
"label": "Moxer Borderline",
"uiTheme": "vs-dark",
"path": "./build/Moxer-Borderline.json"
},
{
"label": "Moxer Light",
"uiTheme": "vs",
"path": "./build/Moxer-Light.json"
}
]
},
"devDependencies": {
"@moxer/vscode-theme-generator": "1.21.0",
"@types/fs-extra": "11.0.4",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"eslint": "8.56.0",
"eslint-config-xo-space": "0.35.0",
"eslint-config-xo-typescript": "2.0.0",
"fs-extra": "11.2.0",
"typescript": "5.3.3"
},
"dependencies": {
"standard-version": "9.5.0"
}
}