-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "nms-sort-o-matic",
"version": "0.4.0",
"description": "Use save file manipulation to manage the inventory in No Man's Sky.",
"license": "MIT",
"author": "Ava Johnson",
"bin": "src/cli.js",
"type": "module",
"main": "src/main.js",
"scripts": {
"start": "node src/cli.js",
"test": "ava",
"build:format": "npx prettier -w src/**/*.js test/**/*.js *.js",
"build:bundle": "npx rollup -c",
"build:package": "npx pkg --out-path dist dist/nms-sort-o-matic.js",
"build": "npm run build:format && npm run build:bundle && npm run build:package",
"build:win": "npm run build:format && npm run build:bundle && npm run build:package -- -t latest-win-x64",
"build:linux": "npm run build:format && npm run build:bundle && npm run build:package -- -t latest-linux-x64"
},
"dependencies": {
"colord": "^2.9.3",
"csv-parse": "^5.4.0",
"lodash": "^4.17.21",
"lz4": "^0.6.5",
"sade": "^1.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"ava": "^5.3.0",
"uid": "^2.0.2"
}
}