-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.43 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
{
"name": "parsley-lsp",
"description": "A VSCode Language Server for Parsley",
"author": "Benjamin Cape",
"license": "MIT",
"version": "1.0.0",
"publisher": "benj2468",
"repository": {
"type": "git",
"url": "https://github.com/benj2468/parsley-lsp"
},
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:parsley"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "parsley",
"extensions": [
".ply"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "parsley",
"scopeName": "source.ply",
"path": "./syntaxes/parsley.tmLanguage.json"
}
],
"configuration": {
"type": "Parsley",
"title": "Path of Parsley Compiler",
"properties": {
"parsley.path": {
"scope": "application",
"type": "string",
"default": "parsleyc.exe",
"description": "Used to call the type checker."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"mocha": "^8.3.2",
"typescript": "^4.4.3"
}
}