This repository has been archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "satisfactory-json",
"version": "0.0.63",
"description": "Convert Satisfactory save files to JSON and back",
"author": "ficsit-felix",
"dependencies": {
"jsbi": "^4.1.0",
"pako": "^2.0.4"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/node": "^17.0.18",
"@types/pako": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"commander": "^9.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"v8-profiler-next": "^1.5.1"
},
"files": [
"lib/**/*"
],
"license": "MIT",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/ficsit-felix/satisfactory-json",
"scripts": {
"build": "tsc --build tsconfig.json",
"build:watch": "tsc -w",
"lint": "eslint \"src/**\"",
"sav2json": "ts-node src/cli/sav2json.ts",
"sav2json:js": "node lib/cli/sav2json.js",
"sav2json:debug": "node -r ts-node/register --inspect-brk src/cli/sav2json.ts",
"json2sav": "ts-node src/cli/json2sav.ts",
"json2sav:js": "node lib/cli/json2sav.js",
"json2sav:debug": "node -r ts-node/register --inspect-brk src/cli/json2sav.ts",
"prepare-gpr": "sed -i 's/\"name\": \"satisfactory-json\"/\"name\": \"@ficsit-felix\\/satisfactory-json\"/' package.json"
},
"types": "lib/index.d.ts",
"resolutions": {
"minimist": "1.2.5"
}
}