forked from Sls0n/codex-account-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 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
{
"name": "@shayyz-code/codex-auth",
"version": "0.2.1",
"private": false,
"description": "A command-line tool to switch between multiple Codex accounts, without needing to relog.",
"license": "MIT",
"bin": {
"codex-auth": "npm/codex-auth.js"
},
"scripts": {
"build": "make build",
"test": "make test",
"test:package": "node --test npm/*.test.js",
"generate:homebrew-formula": "node npm/homebrew-formula.js",
"version:update": "node npm/update-version.js",
"stage:npm-binaries": "node npm/stage-platform-binaries.js",
"ci": "make check"
},
"optionalDependencies": {
"@shayyz-code/codex-auth-darwin-amd64": "0.2.1",
"@shayyz-code/codex-auth-darwin-arm64": "0.2.1",
"@shayyz-code/codex-auth-linux-amd64": "0.2.1",
"@shayyz-code/codex-auth-linux-arm64": "0.2.1",
"@shayyz-code/codex-auth-windows-amd64": "0.2.1"
},
"files": [
"npm/codex-auth.js",
"npm/platform.js",
"README.md",
"LICENSE"
],
"keywords": [
"codex",
"cli",
"su",
"auth",
"accounts",
"switch",
"tokens"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/shayyz-code/codex-auth.git"
},
"bugs": {
"url": "https://github.com/shayyz-code/codex-auth/issues"
},
"homepage": "https://github.com/shayyz-code/codex-auth#readme",
"author": "shayyz-code"
}