Commit 7ea4c090 authored by nanahira's avatar nanahira

bump

parent d1a62ebb
Pipeline #6321 passed with stages
in 37 seconds
This source diff could not be displayed because it is too large. You can view the blob instead.
{ {
"name": "koishi-plugin-act", "name": "koishi-plugin-act",
"version": "2.0.2", "version": "2.0.3",
"description": "A plugin playing acts in QQ groups", "description": "A plugin playing acts in QQ groups",
"main": "dist/index.js", "main": "dist/index.js",
"typings": "dist/index.d.ts", "typings": "dist/index.d.ts",
"dependencies": { "dependencies": {
"@koishijs/plugin-adapter-onebot": "^4.0.0-alpha.9",
"source-map-support": "^0.5.19" "source-map-support": "^0.5.19"
}, },
"peerDependencies": { "peerDependencies": {
"koishi": "^4.0.0-alpha.8", "koishi": "^4.0.0-alpha.10"
"@koishijs/plugin-onebot": "^4.0.0-alpha.7"
}, },
"devDependencies": { "devDependencies": {
"@koishijs/plugin-onebot": "^4.0.0-alpha.7",
"@types/lodash": "^4.14.172", "@types/lodash": "^4.14.172",
"@types/mustache": "^4.1.2", "@types/mustache": "^4.1.2",
"@types/node": "^16.4.11", "@types/node": "^16.4.11",
...@@ -23,7 +22,7 @@ ...@@ -23,7 +22,7 @@
"eslint": "^7.32.0", "eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0", "eslint-plugin-prettier": "^3.4.0",
"koishi": "^4.0.0-alpha.8", "koishi": "^4.0.0-alpha.10",
"load-json-file": "^6.2.0", "load-json-file": "^6.2.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"moment": "^2.29.1", "moment": "^2.29.1",
...@@ -44,7 +43,7 @@ ...@@ -44,7 +43,7 @@
"type": "git", "type": "git",
"url": "https://code.mycard.moe/nanahira/koishi-plugin-act.git" "url": "https://code.mycard.moe/nanahira/koishi-plugin-act.git"
}, },
"author": "Nanahira", "author": "Nanahira <nanahira@momobako.com>",
"license": "MIT", "license": "MIT",
"keywords": [ "keywords": [
"Koishi.js", "Koishi.js",
......
import { Playbook } from './Playbook'; import { Playbook } from './Playbook';
import type { OneBotBot } from '@koishijs/plugin-onebot/lib/bot'; import type { OneBotBot } from '@koishijs/plugin-adapter-onebot/lib/bot';
import moment, { Moment } from 'moment'; import moment, { Moment } from 'moment';
export enum ShowStatus { export enum ShowStatus {
......
...@@ -5,7 +5,7 @@ import { Playbook } from './playbook/Playbook'; ...@@ -5,7 +5,7 @@ import { Playbook } from './playbook/Playbook';
import { plainToClass } from 'class-transformer'; import { plainToClass } from 'class-transformer';
import loadJsonFile from 'load-json-file'; import loadJsonFile from 'load-json-file';
import { MaybeArray } from 'koishi'; import { MaybeArray } from 'koishi';
import type { OneBotBot } from '@koishijs/plugin-onebot/lib/bot'; import type { OneBotBot } from '@koishijs/plugin-adapter-onebot/lib/bot';
const selectors = [ const selectors = [
'user', 'user',
......
...@@ -27,6 +27,6 @@ module.exports = { ...@@ -27,6 +27,6 @@ module.exports = {
}, },
externals: { externals: {
'koishi': 'koishi', 'koishi': 'koishi',
'@koishijs/plugin-onebot/lib/bot': '@koishijs/plugin-onebot/lib/bot', '@koishijs/plugin-adapter-onebot/lib/bot': '@koishijs/plugin-adapter-onebot/lib/bot',
} }
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment