-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
114 lines (114 loc) · 3.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@zhengxs/wechaty-plugin-assistant",
"version": "0.1.3",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"description": "基于 wechaty 的聊天助手插件",
"keywords": [
"ai",
"assistant",
"wechaty",
"wechaty-plugin",
"claude",
"chatgpt",
"openai",
"erniebot"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist-types/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist-types/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist-types/index.d.ts",
"./dist-types/*"
]
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist",
"dist-types"
],
"scripts": {
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"dev": "pnpm task --watch ./demo/dingtalk.ts",
"task": "node --no-warnings -r tsconfig-paths/register -r dotenv/config -r jiti/register",
"inspect": "node --no-warnings --inspect -r tsconfig-paths/register -r dotenv/config -r jiti/register",
"build": "trash dist dist-types && pnpm lint && vite build",
"lint": "eslint . --ext .ts,.cjs",
"lint:fix": "eslint . --ext .ts,.cjs --fix --fix-type [problem,suggestion]",
"fmt": "prettier --write \"**/*.{ts,json,,md}\" --log-level warn"
},
"packageManager": "pnpm@7.0.0",
"peerDependencies": {
"wechaty": ">=1"
},
"dependencies": {
"@zhengxs/ai": "0.5.0",
"@zhengxs/erniebot": "0.1.0-alpha.5",
"common-tags": "^1.8.2",
"eventemitter3": "^5.0.1",
"eventsource-parser": "^1.1.1",
"file-box": "^1.4.15",
"js-tiktoken": "^1.0.8",
"keyv": "^4.5.4",
"languagedetect": "^2.0.0",
"minimist": "^1.2.8",
"openai": "^4.23.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.38.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/common-tags": "^1.8.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@zhengxs/wechaty-puppet-dingtalk": "0.0.1-beta.8",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jiti": "^1.21.0",
"lint-staged": "^15.2.0",
"mkdirp": "^3.0.1",
"prettier": "^3.1.1",
"trash-cli": "^5.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.3.3",
"vite": "^5.0.10",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-externalize-deps": "^0.8.0",
"wechaty": "^1.20.2",
"wechaty-plugin-contrib": "^1.12.1"
},
"homepage": "https://github.com/zhengxs2018/wechaty-plugin-assistant#readme",
"repository": {
"type": "git",
"url": "https://github.com/zhengxs2018/wechaty-plugin-assistant"
},
"bugs": {
"url": "https://github.com/zhengxs2018/wechaty-plugin-assistant/issues"
},
"author": "zhengxs2018 <zhengxs2018@gmail.com>",
"engines": {
"node": ">=18.0.0"
},
"license": "MIT"
}