diff --git a/package.json b/package.json index c811c464d3..c5daf545fb 100644 --- a/package.json +++ b/package.json @@ -84,12 +84,16 @@ "rimraf": "^3.0.2", "semver": "^7.3.7", "source-map-support": "^0.5.21", - "tsconfig-paths": "^3.14.1", "typescript": "^4.6.4", "yakumo": "^0.2.4", "yakumo-mocha": "^0.2.4", "yakumo-publish": "^0.2.2", "yakumo-upgrade": "^0.2.2", "yakumo-version": "^0.2.3" + }, + "yakumo": { + "require": [ + "esbuild-register" + ] } } \ No newline at end of file diff --git a/packages/core/package.json b/packages/core/package.json index 15fc18d237..2311cfeb6c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -37,7 +37,7 @@ "dependencies": { "@koishijs/utils": "^5.4.3", "fastest-levenshtein": "^1.0.12", - "minato": "^1.0.10", + "minato": "^1.1.0", "ns-require": "^1.1.2" } } \ No newline at end of file diff --git a/packages/scripts/package.json b/packages/scripts/package.json index 9aea4a51ce..8e46b095cf 100644 --- a/packages/scripts/package.json +++ b/packages/scripts/package.json @@ -31,7 +31,7 @@ "koishi" ], "peerDependencies": { - "@koishijs/client": "^3.3.0" + "@koishijs/client": "^3.3.1" }, "devDependencies": { "@types/cross-spawn": "^6.0.2", diff --git a/packages/utils/package.json b/packages/utils/package.json index 8bb8f014eb..e395179d16 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -33,7 +33,7 @@ "@koishijs/segment": "^1.1.1", "cosmokit": "^1.1.2", "reggol": "^1.0.3", - "schemastery": "^3.3.3", + "schemastery": "^3.4.0", "supports-color": "^8.1.1" } } \ No newline at end of file diff --git a/plugins/a11y/commands/package.json b/plugins/a11y/commands/package.json index fd247d04ed..2f7686d28c 100644 --- a/plugins/a11y/commands/package.json +++ b/plugins/a11y/commands/package.json @@ -33,8 +33,8 @@ "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/client": "^3.3.1", + "@koishijs/plugin-console": "^3.3.1", "@koishijs/plugin-mock": "^1.0.4", "@types/throttle-debounce": "^2.1.0" }, diff --git a/plugins/a11y/locales/package.json b/plugins/a11y/locales/package.json index 45bbd0eaa1..0494bcf36e 100644 --- a/plugins/a11y/locales/package.json +++ b/plugins/a11y/locales/package.json @@ -33,8 +33,8 @@ "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/client": "^3.3.1", + "@koishijs/plugin-console": "^3.3.1", "@koishijs/plugin-mock": "^1.0.4", "@types/throttle-debounce": "^2.1.0" }, diff --git a/plugins/adapter/qqguild/package.json b/plugins/adapter/qqguild/package.json index 8af8179a99..2fad4bf794 100644 --- a/plugins/adapter/qqguild/package.json +++ b/plugins/adapter/qqguild/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-adapter-qqguild", "description": "QQ Guild Adapter for Koishi", - "version": "2.0.0", + "version": "2.0.1", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ diff --git a/plugins/adapter/qqguild/src/utils.ts b/plugins/adapter/qqguild/src/utils.ts index 3f21f49140..c8e9cbf1fe 100644 --- a/plugins/adapter/qqguild/src/utils.ts +++ b/plugins/adapter/qqguild/src/utils.ts @@ -25,7 +25,7 @@ export const BotConfig = Schema.intersect([ id: Schema.string().description('机器人 id。').required(), key: Schema.string().description('机器人 key。').role('secret').required(), token: Schema.string().description('机器人令牌。').role('secret').required(), - intents: Schema.number().description('需要订阅的机器人事件。').default(Intents.PUBLIC_GUILD_MESSAGES), + intents: Schema.bitset(Intents).description('需要订阅的机器人事件。').default(Intents.PUBLIC_GUILD_MESSAGES), }), ]) diff --git a/plugins/database/mysql/package.json b/plugins/database/mysql/package.json index 4bd09df7a1..00f40c3edc 100644 --- a/plugins/database/mysql/package.json +++ b/plugins/database/mysql/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-mysql", "description": "MySQL support for Koishi", - "version": "4.4.0", + "version": "4.4.1", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -33,6 +33,6 @@ "koishi": "^4.7.0" }, "dependencies": { - "@minatojs/driver-mysql": "^1.0.6" + "@minatojs/driver-mysql": "^1.1.0" } } \ No newline at end of file diff --git a/plugins/database/sqlite/package.json b/plugins/database/sqlite/package.json index 81815db487..f44a55af27 100644 --- a/plugins/database/sqlite/package.json +++ b/plugins/database/sqlite/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-database-sqlite", "description": "SQLite support for Koishi", - "version": "1.3.0", + "version": "1.3.1", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -34,6 +34,6 @@ "koishi": "^4.7.0" }, "dependencies": { - "@minatojs/driver-sqlite": "^1.0.6" + "@minatojs/driver-sqlite": "^1.1.0" } } \ No newline at end of file diff --git a/plugins/frontend/auth/package.json b/plugins/frontend/auth/package.json index 70501aab11..4807b8994e 100644 --- a/plugins/frontend/auth/package.json +++ b/plugins/frontend/auth/package.json @@ -35,10 +35,10 @@ "required:console" ], "peerDependencies": { - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0" + "@koishijs/client": "^3.3.1" } } \ No newline at end of file diff --git a/plugins/frontend/chat/package.json b/plugins/frontend/chat/package.json index 20c7f7d036..e1850c6d8e 100644 --- a/plugins/frontend/chat/package.json +++ b/plugins/frontend/chat/package.json @@ -32,7 +32,7 @@ "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", - "@koishijs/plugin-console": "^3.3.0" + "@koishijs/client": "^3.3.1", + "@koishijs/plugin-console": "^3.3.1" } } \ No newline at end of file diff --git a/plugins/frontend/client/package.json b/plugins/frontend/client/package.json index 58f8496c0a..baccf34967 100644 --- a/plugins/frontend/client/package.json +++ b/plugins/frontend/client/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/client", "description": "Koishi Console Client", - "version": "3.3.0", + "version": "3.3.1", "main": "client/index.ts", "files": [ "app", @@ -43,7 +43,7 @@ "element-plus": "^2.1.11", "marked": "^4.0.15", "sass": "^1.51.0", - "schemastery": "^3.3.3", + "schemastery": "^3.4.0", "vite": "^2.9.8", "vue": "^3.2.33", "vue-router": "^4.0.14" diff --git a/plugins/frontend/console/package.json b/plugins/frontend/console/package.json index 1bc650531d..dd357ead8a 100644 --- a/plugins/frontend/console/package.json +++ b/plugins/frontend/console/package.json @@ -1,7 +1,7 @@ { "name": "@koishijs/plugin-console", "description": "Web User Interface for Koishi", - "version": "3.3.0", + "version": "3.3.1", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ @@ -32,7 +32,7 @@ "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", + "@koishijs/client": "^3.3.1", "@types/uuid": "^8.3.4" }, "dependencies": { diff --git a/plugins/frontend/dataview/package.json b/plugins/frontend/dataview/package.json index 588165061e..33eeaa94a0 100644 --- a/plugins/frontend/dataview/package.json +++ b/plugins/frontend/dataview/package.json @@ -32,10 +32,10 @@ "required:database" ], "peerDependencies": { - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0" + "@koishijs/client": "^3.3.1" } } \ No newline at end of file diff --git a/plugins/frontend/insight/package.json b/plugins/frontend/insight/package.json index 4a31a6c676..886fc78ab9 100644 --- a/plugins/frontend/insight/package.json +++ b/plugins/frontend/insight/package.json @@ -31,11 +31,11 @@ "required:console" ], "peerDependencies": { - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", + "@koishijs/client": "^3.3.1", "@types/throttle-debounce": "^2.1.0" }, "dependencies": { diff --git a/plugins/frontend/logger/package.json b/plugins/frontend/logger/package.json index fffbb20385..d113e9c5a8 100644 --- a/plugins/frontend/logger/package.json +++ b/plugins/frontend/logger/package.json @@ -31,11 +31,11 @@ "optional:console" ], "peerDependencies": { - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", + "@koishijs/client": "^3.3.1", "@koishijs/cli": "^4.7.0", "ansi_up": "^5.1.0" } diff --git a/plugins/frontend/manager/package.json b/plugins/frontend/manager/package.json index 45c4cf2061..5650595405 100644 --- a/plugins/frontend/manager/package.json +++ b/plugins/frontend/manager/package.json @@ -32,11 +32,11 @@ ], "peerDependencies": { "@koishijs/cli": "^4.7.0", - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", + "@koishijs/client": "^3.3.1", "@types/cross-spawn": "^6.0.2", "@types/which-pm-runs": "^1.0.0" }, diff --git a/plugins/frontend/sandbox/package.json b/plugins/frontend/sandbox/package.json index f1cf065e39..ccc0752b31 100644 --- a/plugins/frontend/sandbox/package.json +++ b/plugins/frontend/sandbox/package.json @@ -36,7 +36,7 @@ "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", - "@koishijs/plugin-console": "^3.3.0" + "@koishijs/client": "^3.3.1", + "@koishijs/plugin-console": "^3.3.1" } } \ No newline at end of file diff --git a/plugins/frontend/status/package.json b/plugins/frontend/status/package.json index 6917def24b..9cb9451380 100644 --- a/plugins/frontend/status/package.json +++ b/plugins/frontend/status/package.json @@ -29,11 +29,11 @@ "required:console" ], "peerDependencies": { - "@koishijs/plugin-console": "^3.3.0", + "@koishijs/plugin-console": "^3.3.1", "koishi": "^4.7.0" }, "devDependencies": { - "@koishijs/client": "^3.3.0", + "@koishijs/client": "^3.3.1", "@koishijs/cli": "^4.7.0", "echarts": "^5.3.2", "vue-echarts": "^6.0.2"