-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "camille",
"version": "0.1.0",
"description": "A tools-enabled, remotely accessible but spiritually local-first AI personal assistant",
"type": "module",
"main": "dist/index.js",
"bin": {
"camille": "dist/cli.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"build:check": "tsc --noEmit",
"start": "node dist/index.js",
"cli": "tsx src/cli/cli.tsx",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@ai-sdk/openai": "^3.0.21",
"ai": "^6.0.57",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"grammy": "^1.25.0",
"ink": "^5.2.1",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"smol-toml": "^1.3.0",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/react": "^19.2.10",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20.0.0"
}
}