-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "aesthetic-theme",
"displayName": "Aesthetic's Theme",
"description": "My personal color schema themes for vscode",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Luis Monsalve",
"categories": [
"Themes"
],
"keywords": [
"icons",
"vscode",
"vscode-extension",
"theme",
"visual-studio-code",
"vsc-theme",
"vsc-icon-theme",
"vscode-icons",
"typescript",
"svg",
"svg-icons",
"eslint"
],
"homepage": "https://github.com/AesthetiCoder/aesthetic_theme",
"bugs": "https://github.com/AesthetiCoder/aesthetic_theme/issues",
"repository": {
"type": "git",
"url": "https://github.com/AesthetiCoder/aesthetic_theme"
},
"engines": {
"vscode": "^1.96.2",
"node": "^20.10.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=7.14.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "git config core.hooksPath ./script/git_hook",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint --color --ext .js,.ts --fix",
"generate": "pnpx nodemon",
"build": "rimraf dist && tsc",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"package": "rimraf aesthetic-theme-0.0.1.vsix && vsce package --no-dependencies"
},
"contributes": {
"iconThemes": [
{
"id": "aesthetic-icon-theme",
"label": "Aesthetic icons",
"path": "./dist/aesthetic_icon_theme.json",
"_watch": true
}
],
"themes": [
{
"label": "Aesthetic's Theme",
"uiTheme": "vs-dark",
"path": "./dist/aesthetic_dark_theme.json"
}
],
"configuration": {
"type": "object",
"title": "%configuration.title%",
"properties": {
"aesthetic-theme.activeIconPack": {
"type": "string",
"default": "react",
"description": "%configuration.activeIconPack%",
"enumDescriptions": [
"%configuration.activeIconPack.react%",
"%configuration.activeIconPack.qwik%",
"%configuration.activeIconPack.none%"
],
"enum": [
"react",
"qwik",
"none"
]
}
}
}
},
"devDependencies": {
"@types/node": "20.8.9",
"@types/vscode": "1.96.0",
"@vscode/vsce": "3.2.1",
"rimraf": "^5.0.5",
"typescript": "5.2.2"
}
}