-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"name": "codex-auth-switch",
"version": "0.1.0",
"description": "Switch Codex CLI personal accounts and inspect usage.",
"repository": {
"type": "git",
"url": "git+https://github.com/kndoshn/codex-switch.git"
},
"homepage": "https://github.com/kndoshn/codex-switch#readme",
"bugs": {
"url": "https://github.com/kndoshn/codex-switch/issues"
},
"keywords": [
"codex",
"cli",
"auth",
"account-switching"
],
"license": "MIT",
"type": "module",
"bin": {
"codex-auth-switch": "./dist/index.mjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=24.14.0"
},
"os": [
"darwin",
"linux"
],
"packageManager": "pnpm@10.15.1",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsdown",
"prepack": "pnpm build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:smoke": "pnpm build && node dist/index.mjs --help",
"check": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"clipanion": "4.0.0-rc.4",
"execa": "9.6.1",
"valibot": "1.3.1"
},
"devDependencies": {
"@types/node": "24.12.2",
"@vitest/coverage-v8": "^4.1.4",
"tsdown": "^0.21.9",
"tsx": "4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}