-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@paotuan/adapter-qq",
"description": "QQ Adapter for Satorijs",
"version": "4.5.1-4",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"author": "Shigma <shigma10826@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satorijs/satori.git",
"directory": "adapters/qq"
},
"bugs": {
"url": "https://github.com/satorijs/satori/issues"
},
"homepage": "https://koishi.chat/plugins/adapter/qq.html",
"keywords": [
"bot",
"qq",
"qqbot",
"qqguild",
"chatbot",
"satori",
"im",
"chat"
],
"scripts": {
"build:js": "esbuild src/index.ts --outfile=lib/index.js --bundle --sourcemap --sources-content=false --platform=node --external:@satorijs/satori --external:./node_modules/* --target=es2022",
"build:tsc": "tsc",
"build": "yarn run build:js && yarn run build:tsc",
"version": "npm version prerelease"
},
"dependencies": {
"@satorijs/satori": "^3.6.3",
"qface": "^1.4.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"esbuild": "^0.20.1",
"typescript": "^5.3.3"
}
}