-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.73 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
{
"name": "css-loader-for-vs-code",
"displayName": "CSS Loader for VS Code",
"description": "Enhances the CSS Loader theme dev experience.",
"version": "1.5.0",
"icon": "./assets/logo_128x128.png",
"galleryBanner": {
"color": "#0d0f11",
"theme": "dark"
},
"homepage": "https://deckthemes.com",
"repository": "https://github.com/DeckThemes/CSS-Loader-for-VS-Code",
"publisher": "DeckThemes",
"license": "LGPL-3.0-or-later",
"author": {
"name": "Travis Lane (Tormak)",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/DeckThemes/CSS-Loader-for-VS-Code/issues"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"keywords": [
"css loader",
"cssloader",
"deck themes",
"deckthemes",
"steam"
],
"badges": [
{
"description": "A link to the DeckThemes discord, for help with working on themes.",
"href": "https://discord.gg/W5tHyE6GEY",
"url": "https://badgen.net/discord/members/W5tHyE6GEY"
}
],
"activationEvents": [
"workspaceContains:**/theme.json"
],
"main": "./out/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": [
"theme.json"
],
"url": "./manifest-schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run build",
"build": "vite build",
"package": "vsce package",
"publish": "vsce publish",
"vite-watch": "vite build --watch",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "20.2.5",
"@types/vscode": "^1.80.0",
"glob": "^8.1.0",
"typescript": "^5.1.3",
"vite": "^4.4.8"
}
}