-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 901 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 901 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
{
"name": "agent-session-logger",
"version": "1.0.0",
"description": "A complete workflow tool that captures, organizes, and analyzes AI coding agent sessions — logs all tool calls, LLM interactions, decisions, and code changes into a searchable, timestamped session database. Built with AI by Craftpipe",
"main": "index.js",
"bin": {
"agentsession-logger": "index.js"
},
"type": "commonjs",
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"ai",
"agent",
"session",
"logger",
"workflow",
"logging",
"analytics"
],
"author": "Craftpipe <support@heijnesdigital.com>",
"license": "MIT",
"dependencies": {
"commander": "*",
"inquirer": "*",
"sqlite3": "*",
"chalk": "*",
"express": "*"
},
"devDependencies": {
"vitest": "*",
"@vitest/coverage-v8": "*"
}
}