-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 KB
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
{
"name": "onebot-client-next",
"version": "1.0.4-dev",
"description": "A QQ bot library supports onebot v11 protocol based on LLOneBot",
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "npx mocha",
"pub": "npm publish --access public",
"docs": "npx typedoc src/index.ts",
"build": "npx tsup"
},
"repository": {
"type": "git",
"url": "https://github.com/kamenomi-dev/Onebot-Client-Next.git"
},
"keywords": [
"qq",
"qqbot",
"onebot",
"onebot-v11"
],
"author": "Kamenomi",
"license": "MIT",
"devDependencies": {
"@types/ws": "^8.5.11",
"mocha": "^10.6.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"tsup": "^8.2.3",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"dependencies": {
"@poppinss/cliui": "^6.4.1",
"eventemitter3": "^5.0.1",
"ts-log": "^2.2.5",
"ws": "^8.18.0"
},
"files": [
"./lib/*.*",
"LICENSE",
"readme.md"
],
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
}
}
}