-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.6 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.6 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
{
"name": "agent-session-browser",
"version": "1.1.4",
"private": true,
"description": "Local-only CLI and web UI to browse, search, and filter AI coding agent sessions (Cursor, Claude Code, and extensible providers).",
"license": "MIT",
"author": "rewolf",
"repository": {
"type": "git",
"url": "https://github.com/rewolf/agent-session-browser.git"
},
"homepage": "https://github.com/rewolf/agent-session-browser#readme",
"bugs": {
"url": "https://github.com/rewolf/agent-session-browser/issues"
},
"keywords": [
"cursor",
"claude-code",
"agent-sessions",
"cli",
"local-only"
],
"scripts": {
"check:lockfiles": "node scripts/check-rollup-lockfiles.mjs",
"install:all": "cd packages/core && npm install && cd ../cli && npm install && cd ../backend && npm install && cd ../frontend && npm install",
"clean": "npm run clean --prefix packages/core && npm run clean --prefix packages/cli && npm run clean --prefix packages/backend",
"build": "npm run build --prefix packages/core && npm run build --prefix packages/cli && npm run build --prefix packages/backend && npm run build --prefix packages/frontend",
"dev": "npm run build --prefix packages/core && concurrently -n api,web -c blue,magenta \"npm run dev --prefix packages/backend\" \"npm run dev --prefix packages/frontend\"",
"test": "npm run build --prefix packages/core && npm run test --prefix packages/core && npm run test --prefix packages/backend && npm run test --prefix packages/cli && npm run test --prefix packages/frontend"
},
"devDependencies": {
"concurrently": "^9.1.0"
}
}