-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 5.37 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ariadne-vscode",
"displayName": "Ariadne: Analysis for ML code",
"description": "A language server client for ariadne and WALA",
"author": "Avi Shinnar",
"license": "EPL-2.0",
"version": "0.0.1",
"keywords": [
"analysis",
"python",
"Machine Learning",
"TensorFlow",
"WALA"
],
"repository": {
"type": "git",
"url": "https://github.com/wala/VSCode"
},
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"activationEvents": [
"onLanguage:python",
"onCommand:extension.walaCheckIsRunning"
],
"main": "./build/extension",
"publisher": "WALA",
"contributes": {
"configuration": {
"type": "object",
"title": "Ariadne (WALA lsp) configuration",
"properties": {
"ariadne.java.command": {
"type": "string",
"default": "java",
"description": "The java executable that will be used to run the server jar."
},
"ariadne.server.jar": {
"type": "string",
"default": "./lib/ariadne-server.jar",
"description": "The ariadne server jar."
},
"ariadne.debug": {
"type": "string",
"enum": [
"on",
"off",
"auto"
],
"default": "auto",
"description": "Should the server start with debugging enabled? Specifying \"auto\" enables debug mode if the client was started with debugging enabled"
},
"ariadne.debug.port": {
"type": "number",
"default": 8000,
"description": "If the server is started in debug mode, this is the port it will connect on"
},
"ariadne.debug.suspendOnStart": {
"type": "boolean",
"default": false,
"description": "If the server is started in debug mode, should it suspend on start (until a java debugger attaches to it)?"
},
"ariadne.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "What level of the tracing to enable for the client."
},
"ariadne.trace.client": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "What level of the tracing to enable for the server. This value is not currently respected."
},
"ariadne.trace.output.channel": {
"type": "string",
"default": "Ariadne channel",
"description": "The name of the VSCode output channel that will be used for logging/tracing"
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^9.6.14",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"vscode": "^1.1.17"
},
"dependencies": {
"vscode-languageclient": "^4.1.3"
}
}