-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.22 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
{
"name": "wow-lua-error-loader",
"publisher": "Sapu94",
"version": "0.3.2",
"description": "Load Lua errors from WoW into VSCode for easy debugging",
"displayName": "WoW Lua Error Loader",
"icon": "resources/Logo.png",
"repository": {
"type": "github",
"url": "https://github.com/Sapu94/wow-lua-error-loader.git"
},
"author": "[email protected]",
"license": "MIT",
"categories": [
"Debuggers"
],
"keywords": [
"lua",
"wow"
],
"scripts": {
"lint-extension": "cd extension && eslint . && cd ..",
"lint": "npm run lint-extension",
"build-extension": "tsc -p extension",
"build": "npm run build-extension",
"vsbundle": "npm run clean && npm run lint && npm run build && vsce package",
"vspublish": "npm run vsbundle && vsce publish",
"clean": "rm -f extension/*.js && rm -f extension/*.js.map && rm -f *.vsix"
},
"dependencies": {
"vscode-debugadapter": "^1.48.0"
},
"devDependencies": {
"@types/node": "^16.4.13",
"@types/vscode": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"typescript": "^4.3.5",
"vsce": "^1.96.1"
},
"main": "./extension/extension.js",
"engines": {
"vscode": "^1.44.0"
},
"activationEvents": [
"onDebug"
],
"contributes": {
"configuration": [],
"debuggers": [
{
"type": "wow-lua-error-loader",
"label": "WoW Lua Error Loader",
"program": "./extension/debugAdapter.js",
"runtime": "node",
"languages": [
"lua"
],
"initialConfigurations": [
{
"name": "Load WoW Lua Errors",
"type": "wow-lua-error-loader",
"request": "launch",
"errorType": "blizzard"
}
],
"configurationAttributes": {
"launch": {
"properties": {
"verbose": {
"type": "boolean",
"description": "Enable verbose output",
"default": false
},
"crashFile": {
"type": "string",
"description": "The file to load the crash from",
"default": "crash.txt"
},
"errorType": {
"type": "string",
"description": "The error handler type which generated the error",
"enum": [
"blizzard",
"tsm"
],
"default": "blizzard"
}
}
}
}
}
]
}
}