-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 1.93 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
{
"name": "erlang-debug",
"displayName": "Erlang Debugger",
"version": "0.0.1",
"publisher": "TBD",
"description": "Visual Studio Code debugger extension for Erlang",
"categories": [
"Debuggers"
],
"author": {
"name": "Alan Zimmerman"
},
"license": "MIT",
"private": true,
"scripts": {},
"engines": {
"vscode": "^1.48.0"
},
"repository": {
"type": "git",
"url": "https://github.com/erlang-ls/vscode-erlang-dap.git"
},
"bugs": {
"url": "https://github.com/erlangls/vscode-erlang-dap/issues"
},
"contributes": {
"breakpoints": [
{
"language": "erlang"
}
],
"debuggers": [
{
"type": "erlang",
"label": "Erlang Debugger",
"program": "/usr/local/bin/els_dap",
"osx": {
"program": "/usr/local/bin/els_dap"
},
"linux": {
"program": "./src/foo.js"
},
"initialConfigurations": [
{
"name": "Erlang Debugger",
"type": "erlang",
"request": "launch",
"stopOnEntry": true,
"cwd": "${workspaceRoot}",
"debugServer": 4711
}
],
"configurationAttributes": {
"launch": {
"required": [
],
"properties": {
"cwd": {
"type": "string",
"description": "Working directory at program startup",
"default": "${workspaceRoot}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch (not currently used).",
"default": true
},
"module": {
"type": "string",
"description": "Erlang module to debug",
"default": "daptoy_fact"
},
"function": {
"type": "string",
"description": "Erlang function to debug",
"default": "fact"
},
"args": {
"type": "string",
"description": "Erlang args to debug",
"default": "[5]"
}
}
}
}
}
]
},
"dependencies": {
"tsc": "^1.20150623.0",
"typescript": "^4.0.2"
}
}