-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "lsl",
"displayName": "LSL",
"description": "Linden Scripting Language (LSL) support for Visual Studio Code",
"version": "0.3.2",
"publisher": "ebickle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ebickle/lsl-vscode.git"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Programming Languages"
],
"preview": false,
"main": "./out/src/extension",
"contributes": {
"languages": [
{
"id": "lsl",
"aliases": [
"LSL",
"Linden Scripting Language"
],
"extensions": [
".lsl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lsl",
"scopeName": "source.lsl",
"path": "./syntaxes/lsl.tmLanguage.json"
}
],
"snippets": [
{
"language": "lsl",
"path": "./snippets/lsl.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.3"
}
}