-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.31 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
{
"name": "@albireo3754/agentlog",
"version": "0.2.0",
"description": "Auto-log Claude Code prompts to Obsidian Daily Notes",
"type": "module",
"bin": {
"agentlog": "./src/cli.ts"
},
"keywords": [
"claude-code",
"obsidian",
"daily-notes",
"prompt-logging",
"developer-journal",
"worklog",
"hook"
],
"homepage": "https://github.com/albireo3754/agentlog#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/albireo3754/agentlog.git"
},
"bugs": {
"url": "https://github.com/albireo3754/agentlog/issues"
},
"scripts": {
"build": "bun build src/cli.ts src/hook.ts --outdir dist --target node",
"dev": "bun run src/cli.ts",
"dev:watch": "bun run --watch src/cli.ts",
"prepublishOnly": "bun run typecheck",
"self-review": "node scripts/self-review.mjs",
"test": "bun test",
"test:install-smoke": "bun run scripts/e2e-bun-link-smoke.ts",
"typecheck": "tsc --noEmit",
"postinstall": "node scripts/postinstall.mjs"
},
"engines": {
"node": ">=20",
"bun": ">=1.0.0"
},
"files": [
"src",
"!src/__tests__",
"scripts",
"README.md",
"LICENSE",
"docs"
],
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.4.0"
},
"dependencies": {
"commander": "^14.0.3"
}
}