generated from l-collect/ts-dev-template
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
114 lines (114 loc) · 2.92 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": "onebots",
"version": "0.4.96",
"description": "基于icqq的多例oneBot实现",
"main": "lib/index.js",
"bin": {
"onebots": "./lib/bin.js"
},
"scripts": {
"start": "node .",
"build": "vite build && tsc --project tsconfig.json && tsc-alias -p tsconfig.json && cp -r src/config.sample.yaml lib/config.sample.yaml",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/bin.ts -c config.yaml -r qq -r icqq -r dingtalk -r wechat",
"pub": "npm publish --access public",
"lint": "prettier --check ./**/*.{ts,js}",
"lint:fix": "prettier --write ./**/*.{ts,js,md}",
"test": "ts-node -r tsconfig-paths/register ./src/test.ts",
"docs:dev": "vitepress dev docs --port 8989",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liucl-cn/onebots.git"
},
"keywords": [
"onebot",
"icqq",
"qq",
"wechat",
"dingtalk",
"cq-http"
],
"author": "凉菜",
"license": "MIT",
"bugs": {
"url": "https://github.com/lc-cn/onebots/issues"
},
"homepage": "https://github.com/lc-cn/onebots#readme",
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/koa-basic-auth": "^2.0.6",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-static": "^4.0.4",
"@types/node": "latest",
"@types/ws": "^8.5.3",
"@vitejs/plugin-vue": "^5.0.0",
"@icqqjs/icqq": "latest",
"node-dd-bot": "latest",
"qq-official-bot": "latest",
"web-wechat": "latest",
"dayjs": "^1.11.10",
"element-plus": "^2.4.4",
"prettier": "^3.0.0",
"sass": "^1.69.6",
"ts-node-dev": "latest",
"tsc-alias": "latest",
"tsconfig-paths": "latest",
"typescript": "latest",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vite-plugin-style-import": "^2.0.0",
"vitepress": "^1.0.0-rc.33",
"vue": "^3.4.0",
"vue-router": "^4.2.5"
},
"files": [
"/lib/**/*.js",
"/lib/**/*.d.ts",
"/dist/**/*",
"/lib/*.yaml",
"/**/LICENSE"
],
"peerDependencies": {
"@icqqjs/icqq": "latest",
"node-dd-bot": "latest",
"qq-official-bot": "latest",
"web-wechat": "latest"
},
"peerDependenciesMeta": {
"@icqqjs/icqq": {
"optional": true
},
"web-wechat": {
"optional": true
},
"node-dd-bot": {
"optional": true
},
"qq-official-bot": {
"optional": true
}
},
"dependencies": {
"@koa/router": "^10.1.1",
"@zhinjs/shared": "^0.0.9",
"js-yaml": "^4.1.0",
"koa": "^2.13.4",
"koa-basic-auth": "^4.0.0",
"koa-bodyparser": "^4.3.0",
"koa-static": "^5.0.0",
"log4js": "^6.5.2",
"reflect-metadata": "^0.1.13",
"ws": "^8.16.0"
}
}