-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.94 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
{
"name": "oblivion-save-reader",
"version": "1.3",
"description": "Library to read ES4:Oblivion save files",
"main": "test.js",
"scripts": {
"build-js": "tsc",
"build-dev": "webpack --mode development",
"build-prod": "webpack --mode production",
"server": "tsc && node --loader ts-node/esm --experimental-specifier-resolution=node server/server.ts",
"esm_to_json": "tsc && cross-env NODE_OPTIONS=--max-old-space-size=20480 node --expose-gc --loader ts-node/esm --experimental-specifier-resolution=node esm/esm_to_json.ts",
"esm_to_sqlite": "tsc && cross-env NODE_OPTIONS=--max-old-space-size=20480 node --expose-gc --loader ts-node/esm --experimental-specifier-resolution=node esm/esm_to_sqlite.ts",
"pkg": "tsc && pkg --compress GZip --out-path dist/bin dist/server/server.js && pkg --compress GZip --out-path dist/bin --options \"expose-gc,loader=ts-node/esm,experimental-specifier-resolution=node\" dist/esm/esm_to_sqlite.js",
"pkg_test": "tsc && webpack --mode production && zip -r dist/bin/oblivion-save-reader-v${npm_package_version}.zip test.html test.js dist/bundle.savefile.* dist/bundle.record.* dist/save"
},
"author": "valarnin",
"license": "MIT",
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/pako": "^1.0.3",
"@types/sqlite3": "^3.1.8",
"@types/websocket": "^1.0.5",
"argparse": "^2.0.1",
"cross-env": "^7.0.3",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/glob": "^7.2.0",
"chokidar": "^3.5.3",
"glob": "^7.2.0",
"json-stream-stringify": "^2.0.4",
"pako": "^2.0.4",
"pkg": "^5.5.2",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"ts-node": "^10.5.0",
"ttypescript": "^1.5.13",
"websocket": "^1.0.34"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.8"
},
"type": "module"
}