-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.11 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
{
"name": "vscode-apl-language-client",
"displayName": "APL Language Server Client",
"description": "APL Language Server client for VS Code",
"version": "0.0.10",
"publisher": "OptimaSystems",
"author": {
"email": "[email protected]",
"name": "Gilgamesh Athoraya",
"url": "https://github.com/e9gille"
},
"license": "MIT",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/optimasystems/vscode-apl-language-client.git"
},
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"apl",
"intellisense",
"autocompletion",
"help"
],
"activationEvents": [
"onLanguage:apl",
"workspaceContains:**/*.dyalog"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "APL",
"properties": {
"apl.server.maxWS": {
"type": "string",
"default": "4G",
"description": "The memory limit of the APL language server. [Number][M|G]. Use '-1' to allow unlimited use of the RAM (default is 4G).",
"pattern": "^\\d+[KMG]?$"
},
"apl.server.executablePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "The full path to a Dyalog executable (including the name of the binary)."
},
"apl.server.wsPath": {
"type": [
"string",
"null"
],
"default": null,
"description": "The full path to a Language server workspace."
},
"apl.server.prefixCompleteCharacters": {
"type": "string",
"default": "`",
"description": "Prefix character(s) used for entering APL primitives."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run update-vscode && npm run compile",
"update-vscode": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install",
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.18",
"typescript": "^3.6.3",
"vscode": "^1.1.36"
},
"dependencies": {
"vscode-languageclient": "^5.2.1"
}
}