-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 916 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 916 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
37
{
"name": "codekeel",
"version": "0.0.4",
"description": "Record a decision once and Claude Code stops re-deciding (and contradicting) it later. A local decision ledger for Claude Code sessions — free, open source, runs entirely on your machine.",
"license": "AGPL-3.0-or-later",
"type": "module",
"workspaces": [
"shared"
],
"bin": {
"codekeel": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@clack/prompts": "^1.6.0",
"commander": "^12.1.0",
"js-yaml": "^5.2.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@codekeel/shared": "*",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"vitest": "^4.1.10"
}
}