forked from initialencounter/2022-12-24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.89 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
115
{
"name": "ks",
"version": "0.0.0",
"private": true,
"files": [
".env",
"koishi.yml"
],
"license": "AGPL-3.0",
"workspaces": [
"Plugins/*/*",
"test",
"external/*/external/*",
"external/*/external/*/packages/*",
"external/*/external/*/packages/@*/*",
"external/*/external/*/plugins/*",
"external/*/packages/*",
"external/*/packages/@*/*",
"external/*/plugins/*",
"external/satori/adapters/*",
"external/koishi/plugins/*",
"external/koishi/plugins/adapter/*",
"external/koishi/plugins/common/*",
"external/koishi/plugins/database/*",
"packages/*",
"packages/@*/*",
"plugins/*",
"plugins/@*/*"
],
"scripts": {
"set-proxy": "npm config set registry https://registry.npmmirror.com",
"unset-proxy": "npm config delete registry",
"new": "koishi-scripts new",
"setup": "koishi-scripts setup",
"clone": "koishi-scripts clone",
"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",
"start": "koishi start",
"test:gh-tile": "mocha --exit -r esbuild-register -r yml-register Plugins/News/gh-tile/test/index.spec.ts",
"test:gh-tile:cron": "node -r esbuild-register Plugins/News/gh-tile/test/cron.spec.ts",
"test:jimp": "node -r esbuild-register Plugins/Tool/jimp/test/base.spec.ts"
},
"devDependencies": {
"@koishijs/client": "^5.17.0",
"@koishijs/plugin-hmr": "^1.2.4",
"@koishijs/scripts": "^4.5.0",
"@types/node": "^20.8.7",
"cross-env": "^7.0.3",
"esbuild": "^0.18.20",
"esbuild-register": "npm:@shigma/esbuild-register@^1.1.1",
"typescript": "^5.2.2",
"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.4",
"yakumo-version": "^0.3.4",
"yml-register": "^1.1.0"
},
"dependencies": {
"@initencounter/sst": "^0.0.1",
"@initencounter/vits": "^0.0.3",
"@koishijs/canvas": "^0.2.0",
"@koishijs/censor": "^1.0.2",
"@koishijs/plugin-adapter-onebot": "6.0.2",
"@koishijs/plugin-adapter-satori": "1.0.1",
"@koishijs/plugin-admin": "^2.0.0-alpha.4",
"@koishijs/plugin-analytics": "^1.0.6",
"@koishijs/plugin-auth": "^4.1.3",
"@koishijs/plugin-bind": "^1.4.4",
"@koishijs/plugin-callme": "1.3.3",
"@koishijs/plugin-commands": "^3.4.2",
"@koishijs/plugin-config": "^2.4.2",
"@koishijs/plugin-console": "^5.17.0",
"@koishijs/plugin-database-memory": "^2.3.6",
"@koishijs/plugin-database-sqlite": "^3.6.1",
"@koishijs/plugin-dataview": "^2.3.1",
"@koishijs/plugin-echo": "2.2.5",
"@koishijs/plugin-explorer": "^1.4.5",
"@koishijs/plugin-help": "^2.3.3",
"@koishijs/plugin-insight": "^3.4.1",
"@koishijs/plugin-inspect": "^1.1.3",
"@koishijs/plugin-locales": "^2.5.1",
"@koishijs/plugin-logger": "^2.4.0",
"@koishijs/plugin-market": "^2.3.1",
"@koishijs/plugin-mock": "^2.6.3",
"@koishijs/plugin-sandbox": "^3.2.2",
"@koishijs/plugin-status": "^7.2.2",
"@octokit/openapi-types": "^19.0.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"chai": "^4.3.10",
"jimp": "^0.22.10",
"koishi": "^4.15.2",
"koishi-plugin-adapter-onebot": "^6.1.2",
"koishi-plugin-adapter-red": "2.2.4",
"koishi-plugin-assets-local": "^3.1.0",
"koishi-plugin-blockly": "^0.6.3",
"koishi-plugin-crazy-thursday": "1.0.4",
"koishi-plugin-dbm": "1.0.7",
"koishi-plugin-desktop": "^0.0.4",
"koishi-plugin-dialogue": "4.1.1",
"koishi-plugin-fraud-db": "0.0.2",
"koishi-plugin-puppeteer": "^3.6.3",
"koishi-plugin-rate-limit": "^2.0.0",
"koishi-plugin-status-pro": "1.1.7",
"koishi-plugin-theme-vanilla": "^1.0.6",
"mocha": "^10.2.0"
}
}