-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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": "rolodex",
"displayName": "rolodex",
"description": "Please enter a brief description here",
"version": "0.0.1",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "rolodex",
"aliases": ["Rolodex", "rolodex"],
"extensions": [".rolodex"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "rolodex",
"scopeName": "source.rolodex",
"path": "./syntaxes/rolodex.tmLanguage.json"
}]
},
"activationEvents": [
"onLanguage:rolodex"
],
"files": [
"bin",
"out",
"src"
],
"bin": {
"rolodex-cli": "./bin/cli"
},
"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": "^9.1.0",
"colors": "^1.4.0",
"commander": "^8.0.0",
"langium": "^0.3.0",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-uri": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.17.3",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"langium-cli": "^0.3.0",
"typescript": "^4.1.3"
}
}