forked from kunchenguid/quota-axi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.39 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
{
"name": "quota-axi",
"version": "0.1.7",
"packageManager": "pnpm@11.1.1",
"description": "AXI CLI that reports local agent-provider quota windows without routing or mutation",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/kunchenguid/quota-axi.git"
},
"keywords": [
"quota",
"cli",
"agent",
"axi",
"toon",
"claude",
"codex"
],
"bin": {
"quota-axi": "./dist/bin/quota-axi.js"
},
"files": [
"dist",
"skills/quota-axi",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"build": "tsc",
"build:skill": "tsx scripts/build-skill.ts",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx bin/quota-axi.ts",
"lint": "eslint bin src test scripts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@toon-format/toon": "2.1.0",
"axi-sdk-js": "^0.1.7"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.0.0",
"eslint": "10.1.0",
"globals": "17.7.0",
"prettier": "3.8.1",
"tsx": "4.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.58.0",
"vitest": "3.0.0"
}
}