-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 906 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 906 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": "ghost",
"version": "1.0.31",
"description": "Local AI session capture & search for Claude Code",
"type": "module",
"bin": {
"ghost": "./ghost"
},
"scripts": {
"test": "bun test",
"typecheck": "bun tsc --noEmit",
"format": "bunx biome format --write src/",
"lint": "bunx biome check src/",
"lint:fix": "bunx biome check --write src/",
"check": "bun run typecheck && bun run lint && bun test",
"ghost": "bun src/index.ts",
"link": "bun link"
},
"dependencies": {
"@secretlint/node": "^11.2.4",
"@secretlint/secretlint-rule-preset-recommend": "^11.2.4",
"@tobilu/qmd": "latest",
"yaml": "^2.8.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.0.0"
},
"license": "MIT"
}