-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 856 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 856 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
38
39
40
41
42
{
"name": "@narumitw/pi-codex-usage",
"version": "0.1.36",
"description": "Pi extension that shows Codex ChatGPT subscription usage without requiring Codex CLI.",
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi",
"codex",
"usage",
"status"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/codex-usage.ts"
]
},
"scripts": {
"check": "biome check . && npm run typecheck",
"format": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@earendil-works/pi-coding-agent": "0.74.0",
"@types/node": "25.6.0",
"typescript": "6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/narumiruna/pi-extensions",
"directory": "extensions/pi-codex-usage"
}
}