-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.3 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.3 KB
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
{
"name": "strider-cli",
"productName": "Strider CLI",
"version": "1.0.0",
"type": "module",
"description": "A companion CLI app for playing the tabletop RPG The One Ring 2e",
"main": "./dist/scripts/cli.js",
"author": {
"name": "Andrew Hammond",
"email": "andrhamm@users.noreply.github.com"
},
"license": "CC BY-NC-SA 4.0",
"homepage": "https://github.com/andrhamm/strider-cli",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck": "yarn typecheck:node",
"build": "tsc",
"cli": "tsx ./src/scripts/cli.ts",
"strider": "dotenvx run -- tsx ./src/scripts/cli.ts"
},
"bin": {
"strider": "./src/scripts/cli.ts"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.44.0",
"@inquirer/prompts": "^7.4.1",
"axios": "^1.9.0",
"lowdb": "^7.0.1",
"winston": "^3.17.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^18.19.9",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"commander": "^13.1.0",
"eslint": "^8.56.0",
"prettier": "^3.5.3",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.3",
"typescript": "^5.3.3"
}
}