-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 985 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 985 Bytes
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
{
"name": "rpgmaker-console",
"version": "0.6.0",
"description": "Debug Console for RPG Maker",
"author": "surrealegg <surrealegg@pm.me>",
"license": "MPL-2.0",
"private": false,
"scripts": {
"build": "esbuild ./src/main.ts --outfile=./console/console.js --bundle --target=es6,chrome65 --external:fs --external:path --external:nw.gui",
"dev": "pnpm run build --watch",
"test": "vitest"
},
"devDependencies": {
"@types/chrome": "^0.0.244",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"rpgmakermv_typescript_dts": "github:surrealegg/rpgmakermv_typescript_dts#omori-console",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
}
}