forked from microsoft/vscode-mock-debug
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
136 lines (136 loc) · 3.55 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
133
134
135
136
{
"name": "sqf-debugger",
"displayName": "SQF Debugger",
"description": "Arma 3 SQF Debugger. Requires [Arma Debug Engine](https://steamcommunity.com/sharedfiles/filedetails/?id=1585582292), and [SQF Language](https://marketplace.visualstudio.com/items?itemName=Armitxes.sqf).\nBased on unfinished implementation in [SQF Lint](https://github.com/SkaceKamen/vscode-sqflint/tree/feature-armadebug).",
"publisher": "billw2011",
"repository": {
"url": "https://github.com/Vindicta-Team/vscode-sqf-debugger"
},
"author": {
"name": "billw2012",
"email": "billw2011@gmail.com"
},
"license": "MIT",
"version": "0.7.0",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Debuggers"
],
"private": true,
"main": "./out/extension",
"activationEvents": [
"onDebug"
],
"contributes": {
"configuration": {
"title": "SQF Debugger",
"properties": {
"sqf-debugger.logging": {
"description": "Enable logging for debugging purposes",
"type": "boolean",
"default": false,
"title": "Logging"
},
"sqf-debugger.verbose": {
"description": "Enable verbose logging including all ADE communication",
"type": "boolean",
"default": false,
"title": "Verbose"
},
"sqf-debugger.getSourceFromADE": {
"description": "Attempt to get source code from ADE, when local path cannot be resolved",
"type": "boolean",
"default": false,
"title": "getSourceFromADE"
},
"sqf-debugger.allowEval": {
"description": "Allow evaluation of expressions (hover, watch, debug console)",
"type": "boolean",
"default": false,
"title": "allowEval"
},
"sqf-debugger.enableOOPExtensions": {
"description": "Enable Sparker OOP extensions (o_ prefixes on strings are interpreted as OOP object handles)",
"type": "boolean",
"default": true,
"title": "enableOOPExtensions"
}
}
},
"breakpoints": [
{
"language": "sqf"
}
],
"debuggers": [
{
"type": "sqf",
"label": "SQF Debugger",
"program": "./out/adapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"missionRoot",
"scriptPrefix"
],
"properties": {
"missionRoot": {
"type": "string",
"default": "${workspaceFolder}",
"description": "Absolute path to the mission root directory"
},
"scriptPrefix": {
"type": "string",
"default": "${workspaceFolder}",
"description": "Ingame script prefix"
}
}
}
},
"initialConfigurations": [
{
"name": "connect",
"type": "sqf",
"request": "launch",
"missionRoot": "${workspaceFolder}",
"scriptPrefix": "${workspaceFolder}"
}
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"await-notify": "1.0.1",
"vscode-debugadapter": "1.38.0",
"@types/vscode": "^1.42.0",
"true-case-path": "^2.2.1",
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2",
"ws": "^7.2.1",
"@types/ws": "^7.2.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.11.7",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.18.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0",
"vscode-debugadapter-testsupport": "1.40.1"
}
}