forked from ChuckJonas/vscode-apex-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.16 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
114
115
116
117
118
119
120
121
{
"name": "apex-autocomplete",
"displayName": "Salesforce Language Support",
"description": "Add language support tooling (code-completion, symbols, syntax check) for the Salesforce's Apex language. Previously named 'Salesforce Auto-Complete +'",
"version": "0.2.11",
"publisher": "chuckjonas",
"engines": {
"vscode": "^1.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ChuckJonas/vscode-apex-autocomplete.git"
},
"icon": "images/apex-complete-icon.svg",
"bugs": {
"url": "https://github.com/ChuckJonas/vscode-apex-autocomplete/issues"
},
"keywords": [
"Apex",
"VisualForce",
"IntelliSense",
"Salesforce",
"Code Completion"
],
"categories": [
"Languages"
],
"contributes": {
"commands": [
{
"command": "apex-autocomplete.showOutput",
"title": "Show 'Salesforce Language Support' Debug Output"
},
{
"command": "salesforce-language-support.generateComment",
"title": "Generate ApexDoc"
}
],
"languages": [
{
"id": "apex",
"extensions": [
".cls",
".trigger"
],
"aliases": [
"Apex"
]
},
{
"id": "visualforce",
"extensions": [
".component",
".page"
],
"aliases": [
"Visualforce"
]
}
],
"configuration": {
"type": "object",
"title": "Salesforce Language Support",
"properties": {
"apexAutoComplete.userName": {
"type": "string",
"default": "",
"description": "SF User Name"
},
"apexAutoComplete.password": {
"type": "string",
"default": "",
"description": "Password + Security Token"
},
"apexAutoComplete.instanceUrl": {
"type": "string",
"default": "https://test.salesforce.com",
"description": "Login Url"
},
"apexAutoComplete.checkSyntax": {
"type": "boolean",
"default": "true",
"description": "Checks code for grammar errors"
},
"apexAutoComplete.checkSyntaxDelay": {
"type": "number",
"default": "400",
"description": "If Check syntax is enabled, determines how long to wait after typing to run."
},
"apexAutoComplete.port": {
"type": "number",
"default": "65000",
"description": "The port to run the language tooling.force.com service on"
},
"apexAutoComplete.docGenerationFormat": {
"type": "string",
"default": "apexdoc",
"description": "The format of document generation to use. Currently support `apexdoc` & `javadoc`"
}
}
}
},
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"scripts": {
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"apex-parser-ts":"1.0.14"
}
}