-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
60 lines (60 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "chat_gpt_oicq",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"bin": "build/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsx src/main.ts",
"lint": "eslint . --fix",
"patch": "npx patch-package --patch-dir ./.patches",
"build": "node build.js",
"postinstall": "npx patch-package --patch-dir ./.patches"
},
"pkg": {
"assets": [],
"scripts": [
"build/app.js"
],
"targets": [
"win",
"linux",
"mac"
],
"outputPath": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easydu2002/grasscutter-oicq.git"
},
"author": "easydu",
"license": "MIT",
"bugs": {
"url": "https://github.com/easydu2002/grasscutter-oicq/issues"
},
"homepage": "https://github.com/easydu2002/grasscutter-oicq#readme",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"typescript": "*"
},
"dependencies": {
"chalk": "^5.2.0",
"chatgpt": "^3.3.1",
"esbuild": "^0.16.10",
"inquirer": "^9.1.4",
"oicq": "^2.3.1",
"oicq-guild": "^0.1.0",
"openai": "^3.2.1",
"pkg": "^5.8.0",
"puppeteer": "^19.4.1",
"winston": "^3.8.2"
}
}