-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.57 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
{
"name": "agent-limit",
"version": "0.7.2",
"description": "Terminal dashboard to monitor Claude Code, Codex, and other agent usage limits",
"type": "module",
"main": "src/index.tsx",
"bin": {
"agent-limit": "bin/cli.js"
},
"scripts": {
"start": "bun run src/index.tsx",
"dev": "bun --watch run src/index.tsx",
"build": "bun build --compile --target=bun-darwin-arm64 ./bin/cli.tsx --outfile=dist/agent-limit-darwin-arm64 && bun build --compile --target=bun-darwin-x64 ./bin/cli.tsx --outfile=dist/agent-limit-darwin-x64",
"build:arm64": "bun build --compile --target=bun-darwin-arm64 ./bin/cli.tsx --outfile=dist/agent-limit-darwin-arm64",
"build:x64": "bun build --compile --target=bun-darwin-x64 ./bin/cli.tsx --outfile=dist/agent-limit-darwin-x64"
},
"files": [
"bin",
"src"
],
"keywords": [
"cli",
"terminal",
"dashboard",
"claude",
"codex",
"ai",
"agent",
"usage",
"limits",
"monitor",
"tui"
],
"author": "Will Washburn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/limit.git"
},
"bugs": {
"url": "https://github.com/AgentWorkforce/limit/issues"
},
"homepage": "https://github.com/AgentWorkforce/limit",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin"
],
"dependencies": {
"@opentui/core": "^0.1.67",
"@opentui/react": "^0.1.63",
"bun": "^1.2.0",
"react": "^19.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.0.0",
"typescript": "^5.0.0"
}
}