-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 955 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
{
"name": "pibot",
"version": "1.0.0",
"description": "API bot for QQ boosted with llm AI",
"main": "dist/main.js",
"author": "bcmray",
"license": "LGPL-3.0",
"type": "module",
"scripts": {
"lint": "prettier --write .",
"build": "tsc",
"test": "ENV_TYPE=TEST tsx src/main.ts",
"start": "node dist/main.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"express": "^5.2.1",
"js-yaml": "^4.1.1",
"minimist": "^1.2.8",
"node-napcat-ts": "^0.4.21",
"openai": "^6.22.0",
"ts-morph": "^27.0.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^25.2.3",
"dotenv": "^17.3.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}