codex-team 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "codex-team",
3
+ "version": "0.0.1",
4
+ "description": "Manage multiple Codex ChatGPT auth snapshots and quota usage from the command line.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "homepage": "https://github.com/HOOLC/codex-team#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/HOOLC/codex-team.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/HOOLC/codex-team/issues"
14
+ },
15
+ "keywords": [
16
+ "codex",
17
+ "chatgpt",
18
+ "cli",
19
+ "account",
20
+ "quota"
21
+ ],
22
+ "bin": {
23
+ "codex-team": "dist/cli.js",
24
+ "codexm": "dist/cli.js"
25
+ },
26
+ "main": "./dist/main.cjs",
27
+ "module": "./dist/main.js",
28
+ "exports": {
29
+ ".": {
30
+ "import": "./dist/main.js",
31
+ "require": "./dist/main.cjs"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "LICENSE",
37
+ "README.md"
38
+ ],
39
+ "scripts": {
40
+ "build": "rslib build",
41
+ "dev": "rslib build --watch",
42
+ "prepack": "pnpm build",
43
+ "test": "rstest run",
44
+ "test:watch": "rstest watch",
45
+ "typecheck": "tsc --noEmit"
46
+ },
47
+ "engines": {
48
+ "node": ">=20"
49
+ },
50
+ "publishConfig": {
51
+ "registry": "https://registry.npmjs.org/",
52
+ "access": "public"
53
+ },
54
+ "devDependencies": {
55
+ "@rslib/core": "^0.20.0",
56
+ "@rstest/core": "^0.9.3",
57
+ "@types/node": "^24.5.2",
58
+ "typescript": "^5.9.2"
59
+ },
60
+ "dependencies": {
61
+ "dayjs": "^1.11.20"
62
+ }
63
+ }