-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
94 lines (94 loc) · 2.17 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
85
86
87
88
89
90
91
92
93
94
{
"name": "vscode-teal",
"displayName": "Teal",
"description": "Teal language support for Visual Studio Code",
"version": "0.11.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/teal-language/vscode-teal.git"
},
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Programming Languages"
],
"icon": "assets/teal_logo.png",
"main": "./out/client/extension",
"activationEvents": [
"onLanguage:lua"
],
"publisher": "pdesaulniers",
"contributes": {
"configuration": {
"title": "Teal",
"properties": {
"teal.compilerPath": {
"type": "string",
"default": "tl",
"description": "The path of the tl compiler."
}
}
},
"languages": [
{
"id": "teal",
"aliases": [
"Teal",
"tl"
],
"extensions": [
".tl"
],
"icon": {
"dark": "assets/teal_icon_flat.svg",
"light": "assets/teal_icon_flat.svg"
},
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "teal",
"scopeName": "source.teal",
"path": "./syntaxes/teal.tmLanguage.json"
}
],
"snippets": [
{
"language": "teal",
"path": "./snippets/teal.json"
}
]
},
"dependencies": {
"shell-quote": "^1.8.2",
"tmp-promise": "^3.0.3",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.0.8",
"web-tree-sitter": "^0.24.6"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"@types/shell-quote": "^1.7.5",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.96.0",
"@vscode/vsce": "^3.2.1",
"mocha": "^11.0.1",
"tree-sitter-cli": "^0.24.6",
"tree-sitter-teal": "https://github.com/euclidianAce/tree-sitter-teal/tarball/v0.0.4",
"typescript": "^5.7.2"
},
"scripts": {
"package": "vsce package",
"vscode:prepublish": "npm run build",
"build": "tsc -b && npm run generate-grammar && tree-sitter build --wasm node_modules/tree-sitter-teal && node scripts/post-build.js",
"watch": "tsc -b -w",
"test": "mocha out/test/**/*.spec.js",
"generate-grammar": "cd node_modules/tree-sitter-teal && tree-sitter generate"
}
}