-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.78 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.78 KB
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": "angelscript-remote-debug",
"displayName": "Angelscript Remote Debugger",
"version": "0.1.0",
"publisher": "noizex",
"description": "Angelscript remote debugger",
"author": {
"name": "Kamil Niechajewicz",
"email": "kamiln@gmail.com"
},
"license": "MIT",
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.18.0",
"node": "^7.9.0"
},
"icon": "images/mock-debug-icon.png",
"categories": [
"Debuggers"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/noizex/vscode-angelscript-debug"
},
"bugs": {
"url": "https://github.com/noizex/vscode-angelscript-debug/issues"
},
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "mocha -u tdd ./out/tests/",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"await-notify": "1.0.1",
"vscode-debugadapter": "1.32.1",
"vscode-debugprotocol": "1.32.0"
},
"devDependencies": {
"@types/node": "7.0.55",
"@types/mocha": "2.2.48",
"typescript": "2.6.2",
"mocha": "5.0.1",
"vscode": "1.1.17",
"vscode-debugadapter-testsupport": "1.32.0",
"tslint": "5.9.1",
"vsce": "1.37.5"
},
"main": "./out/extension",
"activationEvents": [
"*"
],
"contributes": {
"breakpoints": [
{
"language": "angelscript"
}
],
"debuggers": [
{
"type": "angelscript",
"label": "Angelscript Debugger",
"runtime": "node",
"program": "./out/debugAdapter.js",
"configurationAttributes": {
"launch": {
"properties": {
"remoteHost": {
"type": "string",
"description": "Remote host to which debugger attaches.",
"default": "127.0.01"
},
"remotePort": {
"type": "string",
"description": "Remote port to which debugger attaches.",
"default": "55557"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": false
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
}
}
}
},
"initialConfigurations": [
{
"type": "angelscript",
"request": "launch",
"name": "Run remote debugger",
"program": "${workspaceFolder}/test"
}
],
"configurationSnippets": [
{
"label": "Angelscript Remote Debug: Launch",
"description": "A new configuration for remote debugging Angelscript runtime.",
"body": {
"type": "angelscript",
"request": "launch",
"name": "Run remote debugger",
"program": "${workspaceFolder}/test"
}
}
]
}
]
}
}