-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.17 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
{
"name": "rawstyle-vscode",
"displayName": "Rawstyle",
"version": "0.7.1",
"description": "🧩 Native CSS features inside Rawstyle templates",
"author": "kh4f <kh4f.dev@gmail.com>",
"publisher": "Rawstyle",
"license": "MIT",
"repository": "https://github.com/rawstylecss/rawstyle-vscode",
"bugs": "https://github.com/rawstylecss/rawstyle-vscode/issues",
"homepage": "https://github.com/rawstylecss/rawstyle-vscode#readme",
"keywords": ["rawstyle", "rawstyle-vscode", "css-in-js"],
"categories": ["Programming Languages", "Formatters", "Snippets", "Linters"],
"icon": "icon.png",
"galleryBanner": { "color": "#F2F2F2", "theme": "light" },
"pnpm": { "onlyBuiltDependencies": ["esbuild", "@vscode/vsce-sign", "keytar"] },
"engines": { "vscode": ">=1.109.x" },
"files": ["package.json", "README.md", "LICENSE", "CHANGELOG.md", "dist", "syntaxes", "icon.png"],
"type": "module",
"main": "dist/index.js",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"grammars": [
{
"language": "css",
"scopeName": "source.css",
"path": "syntaxes/css.tmLanguage.json"
},
{
"scopeName": "rawstyle.css.injection",
"path": "syntaxes/injection.json",
"injectTo": ["source.js", "source.jsx", "source.ts", "source.tsx"],
"embeddedLanguages": { "meta.embedded.block.css": "css" }
}
]
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"build:prod": "tsdown --prod",
"lint": "eslint",
"release": "relion",
"package": "pnpm 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.9.0",
"@types/node": "^25.3.2",
"@types/vscode": "^1.109.0",
"@vscode/emmet-helper": "^2.11.0",
"@vscode/vsce": "^3.7.1",
"eslint": "^10.0.2",
"jiti": "^2.6.1",
"rawstyle": "^0.6.0",
"relion": "^0.39.2",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vscode-css-languageservice": "^6.3.10",
"vscode-languageserver-textdocument": "^1.0.12"
}
}