-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "quickjs-debugger",
"version": "2.0.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/"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"lint": "eslint --fix ./example ./src",
"watch": "tsc --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": {
"@minecraft/server": "^1.14.0-beta.1.21.20-preview.21",
"@minecraft/server-gametest": "^1.0.0-beta.1.20.80-stable",
"@types/node": "^18.19.38",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"@vscode/debugprotocol": "^1.65.0"
}
}