-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 KB
/
package.json
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
{
"name": "mtrpg-ai",
"version": "0.1.0",
"description": "Multiple Tabletop Role Playing Game based on ChatGPT",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node --loader=ts-node/esm src/index.ts",
"cli": "node --loader=ts-node/esm src/cli-debugger.ts",
"debug": "node inspect --loader ts-node/esm src/index.ts",
"upload_images_to_lark": "node --loader=ts-node/esm scripts/upload_images_to_lark.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/tzwm/MTRPG-AI"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"eslint": "^8.31.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.12.0",
"@types/prompt-sync": "^4.2.0",
"@types/qrcode-terminal": "^0.12.0",
"chatgpt": "^5.0.8",
"dreamily-api": "^1.0.2",
"file-box": "^1.5.5",
"prompt-sync": "^4.2.0",
"qrcode-terminal": "^0.12.0",
"replicate-api": "^0.1.5",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4",
"yaml": "^2.2.1"
}
}