-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@klee3721/codex-switch",
"version": "0.1.1",
"description": "Terminal CLI to switch Codex ChatGPT accounts and track 5h/weekly usage",
"type": "module",
"license": "MIT",
"author": "klee3721",
"homepage": "https://github.com/klee3721/codex-switch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/klee3721/codex-switch.git"
},
"bugs": {
"url": "https://github.com/klee3721/codex-switch/issues"
},
"keywords": [
"codex",
"chatgpt",
"cli",
"tui",
"account-switcher"
],
"files": [
"dist/",
"README.md",
"LICENSE",
"SECURITY.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.2.0"
},
"bin": {
"codex-switch": "./dist/cli.js"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "rm -rf dist && tsc --outDir dist && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "bun run build && bun run test:js && bun run test:macos",
"test:js": "bun test tests/*.test.mjs",
"test:macos": "swift test --package-path apps/macos",
"pack:dry-run": "bun pm pack --dry-run",
"prepack": "bun run build",
"build:macos": "swift build --package-path apps/macos",
"build:macos:app": "bash scripts/build-macos-app.sh",
"build:macos:dmg": "bash scripts/build-macos-dmg.sh"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"commander": "^14.0.2"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/node": "^24.3.0",
"typescript": "^5.9.2"
}
}