-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.78 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.78 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
71
72
73
74
{
"name": "fullstacksjs-vscode",
"displayName": "FullstacksJS Theme",
"description": "FullstacksJS community Minimal VSCode and Cursor theme based on FlatRemix",
"version": "1.5.1",
"publisher": "FullstacksJS",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fullstacksjs/vscode-theme.git"
},
"bugs": {
"url": "https://github.com/fullstacksjs/vscode-theme/issues"
},
"homepage": "https://fullstacksjs.com",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#23252e",
"theme": "dark"
},
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"flatremix",
"fullstacksjs",
"color-theme"
],
"contributes": {
"themes": [
{
"label": "FullstacksJS (Legacy)",
"uiTheme": "vs-dark",
"path": "./themes/legacy.json"
},
{
"label": "FullstacksJS (Main)",
"uiTheme": "vs-dark",
"path": "themes/generated/main.json"
},
{
"label": "FullstacksJS (Dark)",
"uiTheme": "vs-dark",
"path": "themes/generated/dark.json"
},
{
"label": "FullstacksJS (Warm)",
"uiTheme": "vs-dark",
"path": "themes/generated/warm.json"
}
]
},
"scripts": {
"dev": "node --watch --experimental-strip-types --watch-path src/ src/generate.ts",
"verify": "eslint src/",
"build": "node --experimental-strip-types src/generate.ts && vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@fullstacksjs/eslint-config": "13.2.2",
"@types/node": "24.2.1",
"@types/vscode": "1.55.0",
"@vscode/vsce": "3.6.0",
"eslint": "9.33.0",
"prettier": "3.6.2",
"typescript": "5.8.3"
}
}