-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.92 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.92 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
{
"name": "jetpack-language-support",
"displayName": "Jetpack Language Support",
"description": "Syntax highlighting and static diagnostics for the Jetpack (.jet) scripting language.",
"version": "1.0.2",
"publisher": "jetpack-community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JetpackMC/language-server.git"
},
"bugs": {
"url": "https://github.com/JetpackMC/language-server/issues"
},
"homepage": "https://github.com/JetpackMC/language-server#readme",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"icon": "assets/icon.png",
"main": "./client/out/extension.js",
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "jetpack",
"aliases": [
"Jetpack",
"jet"
],
"extensions": [
".jet"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "jetpack",
"scopeName": "source.jetpack",
"path": "./syntaxes/jetpack.tmLanguage.json"
}
],
"semanticTokenScopes": [
{
"language": "jetpack",
"scopes": {
"event": ["entity.name.type.event.jetpack", "support.type", "entity.name.type"]
}
}
],
"configuration": {
"type": "object",
"title": "Jetpack",
"properties": {
"jetpack.diagnostics.enable": {
"type": "boolean",
"default": true,
"description": "Enable static diagnostics (lexer, parser, name resolution, and type checking) for .jet files."
},
"jetpack.scriptsRoot": {
"type": "string",
"default": "",
"description": "Absolute or workspace-relative path to the scripts root used to resolve 'using' module paths. This mirrors the runtime's 'plugins/Jetpack/scripts' folder: module paths are computed relative to it. When empty, the scripts root is auto-detected per file as the topmost ancestor directory of a contiguous run of directories that directly contain .jet files."
},
"jetpack.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Trace the communication between VS Code and the Jetpack language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"package:vsix": "vsce package",
"watch": "tsc -b -w",
"clean": "tsc -b --clean"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "1.84.0",
"@vscode/vsce": "^3.9.2",
"typescript": "^5.4.0"
},
"dependencies": {
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.1.0"
}
}