-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ctrader",
"version": "2.1.0",
"description": "Turn-based strategic trading game",
"type": "module",
"scripts": {
"dev": "npm run build && dist/cli.js",
"build": "tsc",
"ci": "npm run build",
"test": "vitest run",
"prepare": "husky install",
"pre-commit": "lint-staged",
"prepublish": "npm run build",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish"
},
"keywords": [
"react",
"terminal",
"cli",
"game",
"stragety",
"fun",
"trade"
],
"author": "Yishai Zehavi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git https://github.com/zyishai/sea-trader.git"
},
"bugs": {
"url": "https://github.com/zyishai/sea-trader/issues"
},
"homepage": "https://github.com/zyishai/sea-trader#readme",
"bin": "dist/cli.js",
"engines": {
"node": ">=10"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@tqman/ink-table": "^0.0.0-development",
"@xstate/react": "^4.1.3",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-select-input": "^6.0.0",
"ink-tab": "^5.1.0",
"ink-text-input": "^6.0.0",
"meow": "^13.2.0",
"react": "^18.3.1",
"uuid": "^11.0.3",
"xstate": "^5.18.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.14.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"husky": "^9.1.6",
"ink-testing-library": "^4.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}