-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.01 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.01 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"publisher": "Artea",
"name": "css-render-vscode",
"displayName": "css-render-vscode",
"version": "0.0.10",
"packageManager": "pnpm@10.12.2",
"description": "A VS Code extension for css-render.",
"author": "Artea <sepush@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sepush/css-render-vscode"
},
"bugs": {
"url": "https://github.com/Sepush/css-render-vscode/issues"
},
"categories": [
"Programming Languages",
"Other"
],
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.84.0"
},
"contributes": {
"commands": [
{
"command": "cssRender.test",
"title": "Test CSS Render Extension"
}
],
"languages": [
{
"id": "cssr-ts",
"aliases": [
"CSS Render TypeScript"
],
"extensions": [
".cssr.ts"
],
"configuration": "./language-configuration.json"
},
{
"id": "cssr-js",
"aliases": [
"CSS Render JavaScript"
],
"extensions": [
".cssr.js"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cssr-ts",
"scopeName": "source.cssr.ts",
"path": "./syntaxes/cssr-ts.tmLanguage.json"
},
{
"language": "cssr-js",
"scopeName": "source.cssr.js",
"path": "./syntaxes/cssr-js.tmLanguage.json"
}
],
"configuration": {
"title": "CSS Render",
"properties": {
"cssRender.enable": {
"type": "boolean",
"default": true,
"description": "Enable CSS Render language support"
},
"cssRender.completion.enable": {
"type": "boolean",
"default": true,
"description": "Enable CSS auto-completion in css-render functions"
},
"cssRender.syntaxHighlighting.enable": {
"type": "boolean",
"default": true,
"description": "Enable syntax highlighting for CSS content in css-render functions"
}
}
},
"configurationDefaults": {
"[cssr-ts]": {
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
},
"[cssr-js]": {
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"vscode:prepublish": "npm run build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.1",
"@antfu/ni": "^0.21.9",
"@types/node": "^20.9.0",
"@types/vscode": "^1.84.1",
"@vscode/vsce": "^2.22.0",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"tsup": "^7.2.0",
"typescript": "^5.8.3"
}
}