-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vscode-lezer",
"displayName": "Lezer",
"version": "0.14.0",
"publisher": "tamuratak",
"license": "MIT",
"description": "Lezer language support for Visual Studio Code",
"homepage": "https://github.com/tamuratak/vscode-lezer",
"repository": {
"type": "git",
"url": "https://github.com/tamuratak/vscode-lezer.git"
},
"engines": {
"vscode": "^1.48.0"
},
"main": "./out/src/main.js",
"activationEvents": [
"onLanguage:lezer"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "lezer",
"aliases": [
"Lezer",
"lezer"
],
"extensions": [
".grammar"
],
"configuration": "./syntax/language-configuration.json"
}
],
"grammars": [
{
"language": "lezer",
"scopeName": "source.lezer",
"path": "./syntax/lezer.tmLanguage.json"
}
]
},
"keywords": [
"lezer",
"Lezer"
],
"dependencies": {
"@tamuratak/lezer-grammar": "0.2.1"
},
"devDependencies": {
"@types/node": "^12",
"@types/vscode": "1.48.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"rimraf": "^3.0.2",
"typescript": "^4.1.3",
"vsce": "^1.85.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint --cache --ext .ts ."
}
},
"scripts": {
"clean": "rimraf out/ .eslintcache",
"compile": "tsc -p ./",
"lint": "eslint --cache --ext .ts .",
"lint:fix": "eslint --fix --cache --ext .ts .",
"release": "npm run clean && npm run lint && npm run compile && vsce package",
"watch": "tsc -watch -p ./"
}
}