-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.34 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
{
"name": "node-napcat-ts",
"version": "0.4.2",
"description": "napcat SDK for Node",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/**/*"
],
"keywords": [
"websocket",
"qq-robot",
"cq-websocket",
"onebot11",
"typescript",
"napcat"
],
"author": {
"name": "huankong233",
"url": "https://github.com/huankong233"
},
"contributors": [
{
"name": "kanocence",
"url": "https://github.com/kanocence"
},
{
"name": "jacksixth",
"url": "https://github.com/jacksixth"
},
{
"name": "YunYouJun",
"url": "https://github.com/YunYouJun"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/huankong233/node-napcat-ts.git"
},
"scripts": {
"build": "tsc",
"dev": "nodemon",
"test": "tsx test/index.ts",
"typecheck": "tsc --noEmit",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:preview": "pnpm -C docs run preview"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"nanoid": "^5.0.9",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"dotenv": "^16.4.7",
"nodemon": "^3.1.9",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}