-
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) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 925 Bytes
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": "chagee-cli",
"version": "0.1.0",
"description": "Region-aware CHAGEE ordering CLI and TUI",
"type": "module",
"bin": {
"chagee": "dist/cli.js",
"chagee-tui": "dist/tui/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx src/cli.ts",
"tui": "tsx src/tui/cli.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js",
"test": "node --test --import tsx test/*.test.ts",
"check": "tsc -p tsconfig.json --noEmit",
"prepack": "npm run build"
},
"keywords": [
"cli",
"typescript",
"chagee"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.2",
"@types/react": "^19.2.13",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"ink": "^6.7.0",
"react": "^19.2.4"
}
}