-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 919 Bytes
/
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
{
"name": "stellaris-save-api",
"version": "0.1.0",
"description": "Library and CLI tool to work with Stellaris save files",
"author": "PsychoX",
"license": "MIT",
"keywords": [
"stellaris",
"cheats"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"ssa-cli": "bin/index.js"
},
"scripts": {
"build": "tsc && tsc-alias",
"cli:js": "node --no-warnings --experimental-specifier-resolution=node --enable-source-maps ./dist/main.js",
"cli:ts": "node --no-warnings --experimental-specifier-resolution=node --loader ./ts-node-loader.js ./src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"commander": "^9.3.0",
"inquirer": "^8.2.3",
"table": "^6.8.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/node": "^16.10.1",
"ts-node": "^10.8.2",
"tsc-alias": "^1.6.11",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.4.3"
}
}