-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 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
71
72
73
74
75
76
77
78
79
80
{
"name": "crystal-core-lang",
"displayName": "crystal-core-lang",
"description": "Please enter a brief description here",
"version": "0.0.1",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "behavior",
"aliases": [
"Crystal Core Behavior",
"behavior"
],
"extensions": [
".ccore-behavior"
],
"configuration": "./language-configuration.json"
},
{
"id": "classifier",
"aliases": [
"Crystal Core Classifier",
"classifier"
],
"extensions": [
".ccore-class"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "behavior",
"scopeName": "source.behavior",
"path": "./syntaxes/behavior.tmLanguage.json"
},
{
"language": "classifier",
"scopeName": "source.classifier",
"path": "./syntaxes/classifier.tmLanguage.json"
}
]
},
"activationEvents": [],
"files": [
"out",
"src"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run build && npm run lint",
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json --watch",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch"
},
"dependencies": {
"chevrotain": "~10.4.2",
"langium": "^1.2.0",
"vscode-languageclient": "~8.0.2",
"vscode-languageserver": "~8.0.2",
"vscode-uri": "~3.0.7"
},
"devDependencies": {
"@types/node": "~16.18.11",
"@types/vscode": "~1.67.0",
"@typescript-eslint/eslint-plugin": "~5.51.0",
"@typescript-eslint/parser": "~5.51.0",
"eslint": "~8.33.0",
"langium-cli": "~1.1.0",
"typescript": "~4.9.5"
}
}