-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.02 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.02 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@softaworks/agent-trail",
"version": "1.0.0",
"description": "Multi-profile Claude Code and Codex CLI session viewer with configurable profiles and enhanced features",
"type": "module",
"bin": {
"agenttrail": "./dist/cli.js"
},
"files": [
"dist",
"public"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --format esm && mv dist/index.js dist/cli.js && chmod +x dist/cli.js",
"prepublishOnly": "npm run build",
"test": "bun test tests/unit tests/api",
"test:unit": "bun test tests/unit",
"test:api": "bun test tests/api",
"test:e2e": "bunx playwright test",
"test:e2e:ui": "bunx playwright test --ui",
"typecheck": "tsc --noEmit",
"check": "biome check .",
"lint": "biome lint --write",
"format": "biome format --write ."
},
"keywords": [
"claude",
"claude-code",
"codex",
"codex-cli",
"openai",
"conversation",
"history",
"viewer",
"session",
"multi-directory",
"profile",
"profiles",
"multi-profile"
],
"repository": {
"type": "git",
"url": "https://github.com/softaworks/agent-trail.git"
},
"bugs": {
"url": "https://github.com/softaworks/agent-trail/issues"
},
"homepage": "https://github.com/softaworks/agent-trail#readme",
"author": "Softaworks",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@elysiajs/static": "^1.4.7",
"elysia": "^1.4.22"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@playwright/test": "^1.51.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "latest",
"semantic-release": "^25.0.2",
"typescript": "^5.9.3"
}
}