-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "RPG 2000 TO MV",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"tsc": "tsc",
"start:dev": "node --loader ts-node/esm src/index.ts",
"start:prod": "node build/index.js",
"compile": "tsc",
"clean": "rimraf build",
"prebuild": "pnpm run compile",
"build": "node --experimental-sea-config sea-config.json",
"format": "prettier -w .",
"test": "mocha"
},
"keywords": [],
"author": "= <=>",
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.12",
"@types/xml2js": "^0.4.14",
"chai": "^5.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{ts}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
}
}