-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 855 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
{
"name": "hats",
"version": "0.3.1",
"description": "Per-terminal / per-process config isolator for Claude Code, Codex, and any CLI — switch hats without polluting your shell.",
"type": "module",
"bin": {
"hats": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.7.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"shell-quote": "^1.8.1",
"smol-toml": "^1.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/shell-quote": "^1.7.5",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}