-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.01 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
{
"name": "skipr",
"version": "0.5.0",
"description": "Multi-account manager for your coding agents (Claude Code today): usage at a glance with burn-rate pacing, one-keystroke profile launch, session hopping",
"license": "MIT",
"author": "Aaron Vanston",
"repository": {
"type": "git",
"url": "https://github.com/aaronvanston/skipr"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"tui",
"cli",
"profiles",
"rate-limits"
],
"engines": {
"bun": ">=1.1.0"
},
"type": "module",
"bin": {
"skipr": "./src/index.tsx"
},
"files": [
"src",
"!src/**/*.test.ts",
"!src/**/*.test.tsx"
],
"scripts": {
"dev": "bun run src/index.tsx",
"test": "bun test"
},
"dependencies": {
"ink": "^5.2.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.3.0",
"ink-testing-library": "^4.0.0",
"typescript": "^5.5.0"
}
}