forked from zhinjs/zhin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
{
"name": "zhin",
"version": "2.0.2-916",
"description": "知音",
"main": "lib/index.js",
"bin": {
"start-zhin": "./bin.js"
},
"types": "lib/index.d.ts",
"scripts": {
"start:zhin": "node ./bin",
"compile": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build": "npm run compile && dtsc --project tsconfig.dtsc.json",
"test": "ts-node -r tsconfig-paths/register -r esbuild-register ./src/test.ts",
"dev": "ts-node -r tsconfig-paths/register -r esbuild-register ./bin -e src",
"docs:dev": "vitepress dev docs --port 8989",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"pub": "npm publish --access public",
"deploy:docs": "bash dosc.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git"
},
"keywords": [
"ts",
"typescript",
"zhin",
"onebot",
"cqhttp",
"oicq",
"framework",
"bot",
"qqbot",
"robot"
],
"author": "凉菜",
"license": "MIT",
"bugs": {
"url": "https://github.com/liucl-cn/zhin/issues"
},
"homepage": "https://github.com/liucl-cn/zhin#readme",
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/node": "latest",
"@types/ws": "^8.5.4",
"dtsc": "^2.2.3",
"less": "^4.1.3",
"ts-node-dev": "latest",
"tsc-alias": "latest",
"typescript": "latest",
"vitepress": "^1.0.0-alpha.43",
"vue": "^3.2.45"
},
"files": [
"bin.js",
"worker.js",
"LICENSE",
"/lib/**/*.js",
"/lib/**/*.d.ts"
],
"dependencies": {
"@koa/router": "^12.0.0",
"@zhinjs/schema": "^0.0.5",
"@zhinjs/shared": "^0.0.7",
"axios": "^1.3.3",
"chokidar": "^3.5.3",
"esbuild": "^0.15.5",
"esbuild-register": "^3.3.3",
"icqq": "^0.0.28",
"js-yaml": "^4.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"log4js": "^6.6.1",
"obj-observer": "^1.0.3",
"tsconfig-paths": "^4.0.0",
"ws": "^8.12.0",
"yargs-parser": "^21.1.1"
}
}