-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "ox",
"description": "Please enter a brief description here",
"version": "0.0.1",
"files": [
"bin"
],
"type": "module",
"scripts": {
"build": "tsc -b tsconfig.json && node esbuild.mjs",
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.json --watch\" \"node esbuild.mjs --watch\"",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch",
"vscode:prepublish": "npm run build && npm run lint"
},
"dependencies": {
"langium": "~2.0.1",
"llvm-bindings": "~0.4.2",
"vscode-languageclient": "~8.1.0",
"chalk": "~5.3.0",
"commander": "~11.0.0"
},
"devDependencies": {
"@types/node": "~16.18.41",
"@typescript-eslint/parser": "~6.4.1",
"@typescript-eslint/eslint-plugin": "~6.4.1",
"eslint": "~8.47.0",
"langium-cli": "~2.0.1",
"typescript": "~5.1.6",
"@types/vscode": "~1.67.0",
"concurrently": "~8.2.1",
"esbuild": "~0.19.2"
},
"displayName": "ox",
"engines": {
"vscode": "^1.67.0",
"node": ">=16.0.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "ox",
"aliases": [
"Ox",
"ox"
],
"extensions": [".ox"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ox",
"scopeName": "source.ox",
"path": "./syntaxes/ox.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:ox"
],
"main": "./out/extension/main.cjs",
"bin": {
"ox-cli": "./bin/cli.js"
}
}