-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"name": "session-bandit",
"private": true,
"version": "0.1.7",
"description": "Search, browse, and extract information from your coding agent sessions.",
"license": "MIT",
"author": "Jan Ole Suhr",
"packageManager": "pnpm@10.33.3",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -r build",
"dev": "tsx packages/cli/src/bin.ts",
"lint": "eslint . --cache --cache-strategy content",
"lint:fix": "eslint . --cache --cache-strategy content --fix",
"ok": "pnpm run build && pnpm run typecheck && pnpm run lint:fix && pnpm run test",
"qa": "pnpm run build && pnpm run typecheck && pnpm run lint && pnpm run test",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^9.39.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^16.0.0",
"tsup": "^8.5.0",
"tsx": "^4.22.4",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"dependencies": {
"commander": "^15.0.0"
}
}