-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "quickjs-debugger",
"version": "2.3.0",
"description": "A debug library for quickjs",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"qjs-debugger": "./dist/repl.js"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/lib/*.js",
"dist/lib/*.d.ts"
],
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --build",
"lint": "biome check --write",
"watch": "tsc --build --watch --preserveWatchOutput"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XeroAlpha/quickjs-debugger.git"
},
"keywords": [
"quickjs",
"debugger",
"gametest"
],
"author": "ProjectXero",
"license": "MIT",
"bugs": {
"url": "https://github.com/XeroAlpha/quickjs-debugger/issues"
},
"homepage": "https://github.com/XeroAlpha/quickjs-debugger",
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@minecraft/server": "beta",
"@minecraft/server-gametest": "beta",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@vscode/debugprotocol": "^1.68.0"
}
}