-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 1.74 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 1.74 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
{
"name": "lesser",
"displayName": "Lesser",
"description": "A minimal dark theme with purple accents for VS Code",
"publisher": "funcdfs",
"version": "1.5.0",
"icon": "icon.png",
"galleryBanner": {
"color": "#211d25",
"theme": "dark"
},
"engines": {
"vscode": "^1.135.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"purple",
"minimal",
"color theme",
"dark theme",
"syntax highlighting",
"vscode theme",
"editor theme",
"developer",
"coding",
"programming",
"aesthetic",
"modern",
"clean",
"low contrast",
"eye friendly"
],
"scripts": {
"build": "tsc && node dist/build.js && node dist/build-editors.js",
"build:theme": "tsx src/build.ts",
"watch": "tsc -w",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"build:editors": "tsx src/build-editors.ts"
},
"devDependencies": {
"@types/node": "^26.4.0",
"tsx": "^4.23.13",
"typescript": "^7.0.2"
},
"contributes": {
"themes": [
{
"label": "Lesser",
"uiTheme": "vs-dark",
"path": "./themes/lesser.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/funcdfs/vscode-theme-lesser"
},
"homepage": "https://funcdfs.github.io/vscode-theme-lesser",
"bugs": {
"url": "https://github.com/funcdfs/vscode-theme-lesser/issues"
},
"license": "MIT",
"author": {
"name": "funcdfs",
"url": "https://github.com/funcdfs"
}
}