-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.14 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
122
123
124
125
126
127
128
129
130
131
132
{
"name": "xysfdx",
"displayName": "xysfdx",
"description": "A rapid development tool for Salesforce SFDX Development. Support Docker/WSL !",
"version": "0.1.11",
"publisher": "ExiaHuang",
"engines": {
"vscode": "^1.40.0"
},
"icon": "images/icon.png",
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"Sfdx",
"Sfdc",
"WSL",
"sfdxcli",
"Dataloader",
"Salesforce",
"Salesforce DX"
],
"bugs": {
"url": "https://github.com/exiahuang/xysfdx/issues"
},
"homepage": "https://github.com/exiahuang/xysfdx",
"repository": {
"type": "git",
"url": "https://github.com/exiahuang/xysfdx.git"
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "apex",
"aliases": [
"Apex",
"apex"
],
"extensions": [
".cls",
".apex",
".soql"
]
}
],
"keybindings": [
{
"command": "xysfdx.open",
"key": "ctrl+shift+j"
}
],
"commands": [
{
"command": "xysfdx.open",
"title": "xysfdx: open command"
}
],
"configuration": {
"type": "object",
"title": "xysfdx configuration",
"properties": {
"xysfdx.maxBuffer": {
"type": "number",
"default": 20000000,
"description": "The maxBuffer option specifies the largest number of bytes allowed on stdout or stderr."
},
"xysfdx.shellMode": {
"type": "string",
"default": "default",
"description": "Default blank, use system shell.",
"enum": [
"default",
"wsl",
"docker",
"bash"
]
},
"xysfdx.dockerAppRoot": {
"type": "string",
"default": "/app/sfdx",
"description": "docker app root path. default /app/sfdx"
},
"xysfdx.dockerContainer": {
"type": "string",
"default": "${lowercaseWorkspaceName}_sfdx_1",
"description": "docker container name, default ${lowercaseWorkspaceName}_sfdx_1"
},
"xysfdx.shellPath": {
"type": "string",
"default": "",
"description": "shellPath. default blank.\nDocker Mode: set it blank!\nRecommend for windows user:\n Wsl mode: C:\\Windows\\System32\\bash.exe\n Bash mode(Msys2 Bash): C:\\msys64\\usr\\bin\\bash.exe\n Bash mode(Git Bash): C:\\Program Files\\Git\\usr\\bin\\bash.exe"
},
"xysfdx.isDebug": {
"type": "boolean",
"default": false,
"description": "show debug command."
},
"xysfdx.optionFeatures": {
"type": "array",
"default": [
"auto_run_apex_anonymous",
"git"
],
"description": "after save events."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.40.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"typescript": "^3.6.4",
"tslint": "^5.20.0",
"vscode-test": "^1.2.2"
}
}