-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.96 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@iam-brain/opencode-codex-auth",
"version": "1.7.0",
"description": "Native Codex auth with multi-account rotation for OpenCode",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"packageManager": "npm@10.9.2",
"type": "module",
"bin": {
"opencode-codex-auth": "./dist/bin/opencode-codex-auth.js",
"persona-tool": "./dist/bin/persona-tool.js"
},
"license": "MIT",
"author": "iam-brain",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/iam-brain/opencode-codex-auth.git"
},
"keywords": [
"opencode",
"openai",
"codex",
"chatgpt",
"oauth",
"multi-account",
"plugin",
"auth"
],
"homepage": "https://github.com/iam-brain/opencode-codex-auth#readme",
"bugs": {
"url": "https://github.com/iam-brain/opencode-codex-auth/issues"
},
"scripts": {
"clean:dist": "node scripts/clean-dist.js",
"build": "npm run patch:plugin-dts && npm run clean:dist && tsc",
"patch:plugin-dts": "node scripts/patch-opencode-plugin-dts.js",
"typecheck": "npm run patch:plugin-dts && tsc --noEmit",
"typecheck:test": "npm run patch:plugin-dts && tsc --noEmit -p tsconfig.test.json",
"verify:local": "node scripts/enforce-local-verify.mjs manual",
"prepush": "npm run verify:local",
"test": "vitest run",
"test:coverage": "vitest run --coverage.enabled true --coverage.provider=v8",
"test:anti-mock": "node scripts/check-test-mocking.mjs",
"check:coverage-ratchet": "node scripts/check-coverage-ratchet.mjs",
"check:docs": "node scripts/check-docs-references.mjs",
"verify": "npm run check:esm-imports && npm run lint && npm run format:check && npm run typecheck && npm run typecheck:test && npm run test:anti-mock && npm run test:coverage && npm run check:coverage-ratchet && npm run check:docs && npm run build && npm run check:dist-esm-imports && npm run smoke:cli:dist",
"check:esm-imports": "node scripts/check-esm-import-specifiers.mjs",
"check:dist-esm-imports": "node scripts/check-esm-import-specifiers.mjs --dist",
"smoke:cli": "npm run build && npm run smoke:cli:dist",
"smoke:cli:dist": "node ./dist/bin/opencode-codex-auth.js --help",
"perf:profile": "npm run build && node dist/scripts/perf-profile.js 300 .",
"perf:profile:compare": "npm run build && node dist/scripts/perf-profile.js 300",
"check:upstream": "node scripts/check-upstream-watch.js",
"check:upstream:update": "node scripts/check-upstream-watch.js --update",
"hooks:install": "node scripts/install-git-hooks.mjs",
"prepack": "npm run build",
"release": "node scripts/release.js",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"lint": "biome lint index.ts lib test bin scripts --error-on-warnings",
"format": "biome format --write index.ts lib test bin scripts docs package.json biome.json README.md CHANGELOG.md CONTRIBUTING.md SECURITY.md LICENSE schemas tsconfig.json tsconfig.test.json vitest.config.ts",
"format:check": "biome format index.ts lib test bin scripts docs package.json biome.json README.md CHANGELOG.md CONTRIBUTING.md SECURITY.md LICENSE schemas tsconfig.json tsconfig.test.json vitest.config.ts --diagnostic-level=error"
},
"files": [
"dist/bin/",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/index.js",
"dist/index.js.map",
"dist/lib/",
"schemas/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22 <23"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@opencode-ai/plugin": "^1.3.0",
"@opencode-ai/sdk": "^1.3.0",
"@types/node": "^20.17.24",
"@types/proper-lockfile": "^4.1.2",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"proper-lockfile": "^4.1.2"
}
}