-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.58 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
{
"name": "nicegui",
"displayName": "NiceGUI",
"icon": "icon.png",
"version": "0.6.1",
"description": "Language support for the NiceGUI framework",
"repository": {
"type": "git",
"url": "https://github.com/daelonsuzuka/nicegui-vscode"
},
"bugs": {
"url": "https://github.com/daelonsuzuka/nicegui-vscode/issues"
},
"license": "MIT",
"author": "DaelonSuzuka",
"publisher": "DaelonSuzuka",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:python"
],
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint ./src --quiet",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test": "vscode-test"
},
"main": "./out/extension.js",
"contributes": {
"grammars": [
{
"injectTo": [
"source.python"
],
"scopeName": "source.nicegui.injections",
"path": "./syntaxes/nicegui.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.inline.html": "html",
"meta.embedded.inline.css": "css",
"meta.embedded.inline.scss": "scss",
"meta.embedded.inline.sass": "sass"
}
}
],
"configuration": {
"type": "object",
"title": "NiceGUI",
"properties": {
"nicegui.enableStringSuggestions": {
"type": "boolean",
"default": true,
"description": "Whether to automatically 'Quick Suggestions' in strings."
}
}
},
"snippets": [
{
"language": "python",
"path": "./configurations/snippets.json"
}
]
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.7.4",
"@types/vscode": "^1.90.0",
"@types/ws": "^8.5.12",
"@vscode/vsce": "^3.1.1",
"esbuild": "^0.24.0",
"tslint": "^6.1.3",
"typescript": "^5.6.2"
}
}