-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (78 loc) · 1.86 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
{
"name": "VSCodeTemplate",
"description": "V",
"author": "Linghui Luo ",
"license": "EPL-2.0",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/MagpieBridge/VSCodeTemplate"
},
"publisher": "linghui-luo",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.42.0"
},
"activationEvents": [
"onLanguage:java"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Tutorial",
"properties": {
"Tutorial.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"Tutorial.lspTransport": {
"scope": "window",
"type": "string",
"enum": [
"stdio",
"socket"
],
"default": "socket",
"description": "Specifies the mode of transport used to communicate with language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "node ./node_modules/vscode/bin/install",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch"
},
"dependencies": {
"vscode-languageclient": "^6.1.3",
"xmlhttprequest-ts": "^1.0.1"
},
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.0",
"esbuild": "^0.11.23",
"rxjs": "^5.5.12",
"tslint": "^5.15.0",
"typescript": "^3.4.2",
"vsce": "^1.75.0",
"vscode": "^1.1.37",
"zone.js": "^0.8.29"
}
}