-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 697 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 697 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
{
"name": "revect",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "PORT=8000 bun run --watch src/server.ts",
"start": "bun run ./src/database/migrations.ts up && bun run src/server.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"openai": "^4.97.0",
"sqlite-vec": "^0.1.7-alpha.2",
"zod": "^3.24.4"
}
}