-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "second-brain-mcp",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server/index.ts",
"start": "node dist/server/index.js",
"cli": "tsx cli.ts",
"api": "tsx src/api/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@modelcontextprotocol/sdk": "^0.5.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.0.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"inquirer": "^10.0.0",
"openai": "^4.67.3",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"nodemon": "^3.1.7",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^3.2.4"
}
}