-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "aiscript-vscode",
"publisher": "aiscript-dev",
"displayName": "AiScript Highlighting",
"description": "Add support for AiScript",
"repository": {
"type": "git",
"url": "https://github.com/aiscript-dev/aiscript-vscode"
},
"version": "0.1.12",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Programming Languages"
],
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:aiscript"
],
"scripts": {
"vscode:prepublish": "npm run clean && npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./aiscript/intellisense/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run clean && npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run clean && npm run esbuild-base -- --sourcemap --watch",
"build": "npm run clean && tsc -p ./",
"watch": "npm run clean && tsc -watch -p ./",
"clean": "node ./scripts/clean.js"
},
"contributes": {
"languages": [
{
"id": "aiscript",
"aliases": [
"AiScript",
"aiscript"
],
"extensions": [
".is",
".ais"
],
"configuration": "./aiscript/language-configuration.json"
}
],
"grammars": [
{
"language": "aiscript",
"scopeName": "source.aiscript",
"path": "./aiscript/syntaxes/aiscript.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/vscode": "^1.83.0",
"esbuild": "^0.21.5",
"typescript": "^5.5.2"
},
"dependencies": {
"@aiscript-dev/aiscript-languageserver": "https://github.com/aiscript-dev/aiscript-languageserver/releases/download/0.1.6/aiscript-dev-aiscript-languageserver-0.1.6.tgz",
"vscode-languageclient": "^9.0.1"
}
}