-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.36 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.36 KB
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
{
"name": "graphlinq-vscode-theme",
"displayName": "GraphLinq Theme",
"description": "A sleek, modern dark theme featuring GraphLinq's signature colors. Perfect for blockchain developers and no-code enthusiasts with enhanced syntax highlighting, bracket colorization, and optimized readability.",
"publisher": "GraphLinq",
"homepage": "https://graphlinq.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GraphLinq/GraphLinq.VSCodeTheme"
},
"author": {
"name": "John R. Bussiculo",
"email": "john.graphlinq@gmail.com",
"url": "https://www.jr00t.com"
},
"bugs": {
"url": "https://github.com/GraphLinq/GraphLinq.VSCodeTheme/issues"
},
"keywords": [
"theme",
"graphlinq",
"dark",
"no-code",
"blockchain",
"web3",
"purple",
"pink",
"modern",
"sleek",
"bracket-colorization",
"syntax-highlighting"
],
"icon": "images/icon-logo-dark-128.png",
"galleryBanner": {
"color": "#1b1734",
"theme": "dark"
},
"version": "0.2.1",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "GraphLinq Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
]
},
"scripts": {
"package": "vsce package --no-yarn",
"publish": "vsce publish --no-yarn",
"install-local": "code --install-extension graphlinq-vscode-theme-0.2.1.vsix",
"version:patch": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 patch",
"version:minor": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 minor",
"version:major": "powershell -ExecutionPolicy Bypass -File ./scripts/bump-version.ps1 major",
"release:patch": "powershell -ExecutionPolicy Bypass -File ./scripts/release.ps1 patch",
"release:minor": "powershell -ExecutionPolicy Bypass -File ./scripts/release.ps1 minor",
"release:major": "powershell -ExecutionPolicy Bypass -File ./scripts/release.ps1 major",
"test-local": "npm run package && npm run install-local"
},
"devDependencies": {
"@vscode/vsce": "^3.2.1"
}
}