-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.01 KB
/
package.json
File metadata and controls
117 lines (117 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
{
"name": "hsml",
"displayName": "hsml",
"version": "0.6.0",
"description": "hsml support for Visual Studio Code",
"categories": [
"Programming Languages"
],
"license": "MIT",
"author": {
"name": "Christopher Quadflieg",
"email": "chrissi92@hotmail.de",
"url": "https://github.com/Shinigami92"
},
"repository": {
"type": "git",
"url": "https://github.com/hsml-lab/vscode-hsml.git"
},
"publisher": "hsml-lab",
"files": [
"client/out",
"client/package.json",
"icon.png",
"language-configuration.json",
"LICENSE",
"syntaxes/hsml.tmLanguage.json",
"syntaxes/vue-hsml.tmLanguage.json"
],
"type": "module",
"main": "./client/out/extension.js",
"scripts": {
"build": "pnpm --recursive run build",
"clean": "git clean -fdx --exclude .claude",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint",
"ts-check": "tsc --noEmit && pnpm --recursive run ts-check",
"test": "run-s test:grammar test:vitest",
"test:vitest": "vitest",
"test:update-snapshots": "vitest run -u",
"test:grammar": "vscode-tmgrammar-test -g syntaxes/hsml.tmLanguage.json \"tests/**/*.test.hsml\"",
"coverage": "vitest run --coverage",
"preflight": "pnpm install && run-s format lint ts-check build test:grammar test:update-snapshots"
},
"devDependencies": {
"@types/node": "24.12.0",
"@vitest/coverage-v8": "4.1.2",
"@vscode/test-electron": "2.5.2",
"npm-run-all2": "8.0.4",
"oxfmt": "0.42.0",
"oxlint": "1.57.0",
"typescript": "6.0.2",
"vitest": "4.1.2",
"vscode-oniguruma": "2.0.1",
"vscode-textmate": "9.3.2",
"vscode-tmgrammar-test": "0.1.3"
},
"contributes": {
"commands": [
{
"command": "hsml.restartLanguageServer",
"title": "HSML: Restart Language Server"
}
],
"configuration": {
"type": "object",
"title": "HSML configuration",
"properties": {
"hsml.server.path": {
"type": "string",
"default": "hsml",
"description": "Path to the hsml binary. Defaults to 'hsml' (looked up in PATH)."
}
}
},
"grammars": [
{
"language": "hsml",
"scopeName": "text.hsml",
"path": "./syntaxes/hsml.tmLanguage.json",
"embeddedLanguages": {
"source.ts": "typescript",
"source.ts.embedded.html.vue": "typescript"
}
},
{
"scopeName": "vue.hsml.codeblock",
"path": "./syntaxes/vue-hsml.tmLanguage.json",
"injectTo": [
"text.html.vue"
],
"embeddedLanguages": {
"text.hsml": "hsml"
}
}
],
"languages": [
{
"id": "hsml",
"aliases": [
"HSML",
"hsml"
],
"extensions": [
".hsml"
],
"configuration": "./language-configuration.json"
}
]
},
"icon": "icon.png",
"engines": {
"node": ">=22.0.0",
"vscode": ">=1.101.0"
},
"packageManager": "pnpm@10.33.0"
}