This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 1.52 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
{
"name": "phpls-rs-client",
"description": "VSCode part of the phpls-rs language server",
"author": "Fabian Becker",
"license": "MIT",
"version": "0.0.1",
"publisher": "sawmurai",
"repository": {
"type": "git",
"url": "https://github.com/sawmurai/phpls-rs"
},
"engines": {
"vscode": "^1.43.0"
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"activationEvents": [
"onLanguage:plaintext"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "phplsrs",
"properties": {
"phplsrs.binary": {
"scope": "resource",
"type": "string",
"default": ".",
"description": "Path to the binary."
},
"phplsrs.stubs": {
"scope": "machine",
"type": "string",
"default": ".",
"description": "Path to the PHPStorm language stubs."
},
"phplsrs.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "messages",
"description": "Traces the communication between VS Code and the awesome language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"mocha": "^6.2.2",
"@types/node": "^12.12.0",
"eslint": "^6.4.0",
"@typescript-eslint/parser": "^2.3.0",
"typescript": "^3.8.3",
"@types/vscode": "1.43.0",
"vscode-test": "^1.3.0"
}
}