-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "@ascenx/codexacc",
"version": "0.1.3",
"description": "Manage multiple Codex CLI accounts",
"license": "MIT",
"homepage": "https://github.com/ascenx/codexacc#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ascenx/codexacc.git"
},
"bugs": {
"url": "https://github.com/ascenx/codexacc/issues"
},
"type": "module",
"bin": {
"codexacc": "dist/bin.js"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "pnpm clean && tsc -p tsconfig.json && chmod +x dist/bin.js",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "pnpm test && pnpm typecheck && pnpm build"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
}
}