-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "opencode-codex-usage",
"version": "0.1.0",
"private": true,
"description": "Codex quota probe and OpenCode toast plugin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonmit/opencode-codex-usage.git"
},
"homepage": "https://github.com/jasonmit/opencode-codex-usage#readme",
"bugs": {
"url": "https://github.com/jasonmit/opencode-codex-usage/issues"
},
"keywords": [
"opencode",
"codex",
"plugin",
"quota",
"tui"
],
"type": "module",
"main": "dist/index.js",
"bin": {
"opencode-codex-usage": "dist/bin/opencode-codex-usage.js"
},
"files": [
"dist/bin/**/*.js",
"dist/index.js",
"dist/lib/**/*.js",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json && chmod +x dist/bin/opencode-codex-usage.js",
"test": "npm run build && node --test \"dist/tests/**/*.test.js\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "npm run build",
"pack:dry": "npm pack --dry-run",
"pack": "npm pack"
},
"devDependencies": {
"@types/node": "^25.3.3",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.9.2"
},
"dependencies": {
"zod": "^4.3.6"
}
}