-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "claude-limitline",
"version": "1.0.0",
"description": "A statusline for Claude Code showing real-time usage limits and weekly tracking",
"main": "dist/index.js",
"bin": {
"claude-limitline": "dist/index.js"
},
"type": "module",
"scripts": {
"prepare": "tsup src/index.ts --format esm --dts --clean",
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --watch",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tylergraydev/claude-limitline.git"
},
"keywords": [
"claude",
"claude-code",
"statusline",
"powerline",
"usage",
"monitoring",
"cli",
"anthropic"
],
"author": "Tyler Gray",
"license": "MIT",
"bugs": {
"url": "https://github.com/tylergraydev/claude-limitline/issues"
},
"homepage": "https://github.com/tylergraydev/claude-limitline#readme",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.16",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
]
}