-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.06 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.06 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
{
"name": "dimfire",
"displayName": "Dim Fire",
"description": "Dim, simple, warm theme for the minimalist.",
"version": "1.1.2",
"publisher": "ahme-dev",
"repository": {
"url": "https://github.com/ahme-dev/dimfire",
"type": "git"
},
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Themes"
],
"icon": "assets/icon-nobg.png",
"keywords": [
"dark",
"dim",
"warm",
"minimal",
"simple"
],
"contributes": {
"themes": [
{
"label": "Dim Fire Night",
"uiTheme": "vs-dark",
"path": "./themes/Dim Fire Night-color-theme.json"
},
{
"label": "Dim Fire Dusk",
"uiTheme": "vs-dark",
"path": "./themes/Dim Fire Dusk-color-theme.json"
},
{
"label": "Dim Fire Day",
"uiTheme": "vs",
"path": "./themes/Dim Fire Day-color-theme.json"
}
]
},
"scripts": {
"format": "biome format --write",
"compose": "bun --experimental-strip-types compose/main.ts",
"package": "bun vsce package"
},
"devDependencies": {
"@vscode/vsce": "^3.2.1",
"@biomejs/biome": "^2.1.0",
"@types/node": "^24.0.10"
}
}