-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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
81
{
"name": "pegjs-language",
"displayName": "PEG.js Language",
"description": "Syntax highlighting and error reporting for PEG.js",
"version": "1.0.4",
"license": "MIT",
"publisher": "SirTobi",
"author": {
"name": "Tobias Kahlert",
"email": "[email protected]"
},
"homepage": "https://github.com/SrTobi/code-pegjs-language",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/SrTobi/code-pegjs-language/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SrTobi/code-pegjs-language"
},
"activationEvents": [
"onLanguage:pegjs"
],
"main": "./out/main",
"contributes": {
"languages": [
{
"id": "pegjs",
"aliases": [
"PEG.js",
"pegjs",
"peg.js"
],
"extensions": [
".pegjs"
],
"configuration": "./pegjs.configuration.json"
}
],
"grammars": [
{
"language": "pegjs",
"scopeName": "source.pegjs",
"path": "./syntaxes/pegjs.json",
"embeddedLanguages": {
"meta.embedded.block.javascript": "javascript"
}
}
],
"snippets": [
{
"language": "pegjs",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "rm -r ./node_modules ./out ./server/out ./server/tsconfig.tsbuildinfo && npm install && npm run compile && npm prune --production",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"typescript": "^4.0.3",
"@types/pegjs": "^0.10.2",
"@types/vscode": "^1.50.0",
"@types/node": "12.12.2"
},
"dependencies": {
"pegjs": "^0.10.0",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-languageclient": "^6.1.3"
}
}