-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (76 loc) · 1.87 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
{
"name": "moondusttheme",
"version": "0.7.0",
"description": "Handcrafted theme for those who have not found syntax highlighting useful for themself",
"keywords": [
"color",
"color-theme",
"syntax",
"syntax-highlighting",
"theme"
],
"homepage": "https://moondustthe.me/",
"bugs": {
"url": "https://github.com/vanyauhalin/moondusttheme/issues/"
},
"repository": "github:vanyauhalin/moondusttheme",
"license": {
"type": "MIT",
"url": "https://github.com/vanyauhalin/moondusttheme/blob/main/LICENSE/"
},
"author": {
"name": "Ivan Uhalin",
"email": "[email protected]",
"url": "https://vanyauhalin.me/"
},
"scripts": {
"build": "node makefile.js build",
"clear": "clear-package-json package.json --output package.json",
"grep": "node makefile.js grep",
"pull": "node makefile.js pull",
"test": "node makefile.js test"
},
"type": "module",
"files": [
"dist/moondusttheme-far-side-of-the-moon.json",
"dist/moondusttheme-near-side-of-the-moon.json",
"icon.png",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"@types/hast": "3.0.4",
"@types/node": "22.9.0",
"clean-publish": "5.1.0",
"color": "4.2.3",
"hastscript": "9.0.0",
"sade": "1.8.1",
"shiki": "1.23.0",
"typescript": "5.6.3",
"uvu": "0.5.6"
},
"engines": {
"vscode": "^1.87.0"
},
"displayName": "Moondust Theme",
"publisher": "vanyauhalin",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Moondust: Near Side of the Moon",
"uiTheme": "vs",
"path": "./dist/moondusttheme-near-side-of-the-moon.json"
},
{
"label": "Moondust: Far Side of the Moon",
"uiTheme": "vs-dark",
"path": "./dist/moondusttheme-far-side-of-the-moon.json"
}
]
},
"icon": "icon.png"
}