-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.04 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
{
"name": "vscode-theme-fullmetal",
"displayName": "Fullmetal Theme",
"description": "A dark theme with vibrant colors crafted with alchemy.",
"version": "1.8.0",
"author": "Daniel Zhang",
"publisher": "DanielZhang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielHZhang/vscode-theme-fullmetal"
},
"bugs": "https://github.com/DanielHZhang/vscode-theme-fullmetal/issues",
"homepage": "https://github.com/DanielHZhang/vscode-theme-fullmetal",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Themes"
],
"extensionKind": [
"ui",
"workspace"
],
"keywords": [
"color-theme",
"dark",
"fullmetal",
"theme"
],
"main": "build/extension.js",
"browser": "build/extension.js",
"icon": "assets/logo.png",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "saveBuiltInSchemas",
"title": "Save Built-in VSCode Theme Schemas",
"category": "Fullmetal"
}
],
"themes": [
{
"label": "Fullmetal",
"path": "./themes/fullmetal-color-theme.json",
"uiTheme": "vs-dark"
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"scripts": {
"build": "tsc-suppress && node build/theme.js",
"schemas": "tsc-suppress && node build/schema.js",
"watch": "concurrently \"npm:watch-*\"",
"watch-generate": "nodemon --watch build build/theme.js",
"watch-compile": "tsc-suppress --watch",
"vscode:prepublish": "yarn build"
},
"devDependencies": {
"@supersede/eslint-config": "^1.3.0",
"@supersede/prettier-config": "^1.0.1",
"@types/node": "^20.14.10",
"@types/vscode": "1.75.0",
"@vscode/vsce": "^2.29.0",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"json-schema-to-typescript": "^11.0.2",
"nodemon": "^2.0.20",
"prettier": "^3.3.2",
"semver": "^7.6.2",
"tsc-suppress": "^1.0.7",
"typescript": "^5.5.3"
}
}