-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 838 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
{
"name": "nota",
"version": "0.0.1",
"description": "A persona-centric AI agent framework.",
"type": "module",
"bin": {
"nota": "./dist/cli/index.js"
},
"scripts": {
"cli": "tsx src/cli/index.ts",
"cli:watch": "tsx watch src/cli/index.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"better-sqlite3": "^11.8.1",
"commander": "^12.1.0",
"ink": "^5.0.1",
"openai": "^4.77.0",
"react": "^18.3.1",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.20.0",
"@types/react": "^18.3.18",
"@types/ws": "^8.18.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}