-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.97 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
{
"name": "voicss-vscode",
"displayName": "Voicss",
"version": "0.2.1",
"description": "💎 Native CSS Features for Voicss",
"author": "kh4f <kh4f.dev@gmail.com>",
"publisher": "Voicss",
"license": "MIT",
"repository": "https://github.com/voicss/voicss-vscode",
"bugs": "https://github.com/voicss/voicss-vscode/issues",
"homepage": "https://github.com/voicss/voicss-vscode#readme",
"keywords": ["voicss", "voicss-vscode", "css-in-ts"],
"categories": ["Programming Languages", "Formatters", "Snippets", "Linters"],
"icon": "icon.png",
"galleryBanner": { "color": "#221816", "theme": "dark" },
"engines": { "vscode": ">=1.116.0" },
"files": ["package.json", "README.md", "LICENSE", "CHANGELOG.md", "dist", "syntaxes", "icon.png"],
"type": "module",
"main": "dist/client.js",
"activationEvents": ["onLanguage:typescript", "onLanguage:typescriptreact"],
"contributes": {
"grammars": [
{
"language": "css",
"scopeName": "source.css",
"path": "syntaxes/css.tmLanguage.json"
},
{
"scopeName": "voicss.css.injection",
"path": "syntaxes/injection.json",
"injectTo": ["source.ts", "source.tsx"],
"embeddedLanguages": { "meta.embedded.block.css": "css" }
}
]
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown -w",
"build:prod": "tsdown -p",
"lint": "eslint",
"typecheck": "tsc",
"release": "bunx relion",
"package": "bun build:prod && vsce package",
"prepackage": "cp .github/icon.png icon.png",
"postpackage": "rm icon.png"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "^1.3.12",
"@types/vscode": "^1.116.0",
"@vscode/emmet-helper": "^2.11.0",
"@vscode/vsce": "^3.9.1",
"eslint": "^10.2.1",
"jiti": "^2.6.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vscode-css-languageservice": "^6.3.10",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
}
}