-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 780 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 780 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
{
"name": "superwhisper-rag",
"version": "1.1.1",
"description": "Local SQL archive for Super Whisper dictation history with full-text + semantic search.",
"type": "module",
"private": true,
"bin": {
"swrag": "./dist/swrag"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"test": "bun test",
"lint": "biome lint .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"citty": "^0.2.2",
"sqlite-vec": "^0.1.9",
"sqlite-vec-darwin-arm64": "^0.1.9",
"sqlite-vec-darwin-x64": "^0.1.9",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}