-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.74 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
{
"name": "kbot-app",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0",
"files": [
".env",
"koishi.yml"
],
"workspaces": [
"external/*",
"external/*/external/*",
"external/*/external/*/packages/*",
"external/*/external/*/packages/@*/*",
"external/*/packages/*",
"external/*/packages/@*/*",
"packages/*",
"packages/@*/*",
"plugins/*",
"plugins/@*/*"
],
"scripts": {
"new": "koishi-scripts new",
"setup": "koishi-scripts setup",
"build": "yakumo build",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
"dev": "cross-env NODE_ENV=development koishi start -r esbuild-register -r yml-register --watch --experimental-vm-modules",
"start": "koishi start --experimental-vm-modules",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@koishijs/plugin-adapter-discord": "4.0.0",
"@koishijs/plugin-adapter-kook": "4.0.0",
"@koishijs/plugin-adapter-lark": "3.0.0",
"@koishijs/plugin-adapter-onebot": "6.0.0",
"@koishijs/plugin-adapter-telegram": "4.0.0",
"@koishijs/plugin-admin": "2.0.0-alpha.2",
"@koishijs/plugin-analytics": "1.0.5",
"@koishijs/plugin-bind": "1.4.3",
"@koishijs/plugin-commands": "3.2.4",
"@koishijs/plugin-config": "2.3.1",
"@koishijs/plugin-console": "5.14.2",
"@koishijs/plugin-database-sqlite": "3.6.0",
"@koishijs/plugin-dataview": "2.3.1",
"@koishijs/plugin-explorer": "1.4.5",
"@koishijs/plugin-help": "2.3.2",
"@koishijs/plugin-hmr": "1.2.1",
"@koishijs/plugin-insight": "3.4.1",
"@koishijs/plugin-locales": "2.4.0",
"@koishijs/plugin-logger": "2.3.2",
"@koishijs/plugin-market": "2.2.11",
"@koishijs/plugin-rate-limit": "1.3.3",
"@koishijs/plugin-sandbox": "3.1.13",
"@koishijs/plugin-status": "7.1.3",
"koishi": "4.14.5",
"koishi-plugin-assets-local": "3.1.0",
"koishi-plugin-desktop": "0.0.4",
"koishi-plugin-downloads": "0.1.1",
"koishi-plugin-gocqhttp": "3.8.0",
"koishi-plugin-puppeteer": "3.5.0",
"koishi-plugin-qdvc": "0.2.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@koishijs/client": "^5.13.3",
"@koishijs/plugin-hmr": "^1.2.1",
"@koishijs/scripts": "^4.3.0",
"@types/node": "^18.17.12",
"cross-env": "^7.0.3",
"esbuild": "^0.17.19",
"esbuild-register": "npm:@shigma/esbuild-register@^1.1.1",
"eslint": "^8.48.0",
"typescript": "5.1.6",
"yakumo": "^0.3.13",
"yakumo-esbuild": "^0.3.25",
"yakumo-esbuild-yaml": "^0.3.1",
"yakumo-publish": "^0.3.4",
"yakumo-publish-sync": "^0.3.3",
"yakumo-tsc": "^0.3.12",
"yakumo-upgrade": "^0.3.3",
"yakumo-version": "^0.3.4",
"yml-register": "^1.1.0"
}
}