-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "codex-keyring",
"version": "0.6.4",
"description": "Native multi-account manager for Codex with quota-aware switching, smooth failover, and plugin install support.",
"type": "module",
"packageManager": "npm@11.11.0",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"codex-keyring": "dist/src/cli/index.js"
},
"files": [
"dist",
".codex-plugin",
".mcp.json",
"assets",
"skills",
"README.md",
"README.vi.md",
"AGENTS.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"release:verify": "npm run build && npm test && npm run release:check",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "tsx src/cli/index.ts",
"dev:mcp": "tsx src/cli/index.ts mcp",
"test": "vitest run",
"pack:local": "npm pack",
"prepack": "npm run release:verify",
"prepublishOnly": "npm run release:verify",
"install:plugin": "tsx scripts/install-plugin.ts",
"uninstall:plugin": "tsx scripts/uninstall-plugin.ts",
"migrate:store": "tsx scripts/migrate-store.ts",
"smoke:install": "tsx scripts/smoke-install.ts",
"release:check": "tsx scripts/release-guard.ts"
},
"keywords": [
"codex",
"openai",
"plugin",
"extension",
"multi-account",
"account-switching",
"manual-switch",
"auto-switch",
"failover",
"accounts",
"auth"
],
"author": "NgoQuocViet2001 <ngoquocviet2001@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/NgoQuocViet2001/codex-keyring",
"repository": {
"type": "git",
"url": "git+https://github.com/NgoQuocViet2001/codex-keyring.git"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}