novelai-bot/package.json

87 lines
2.2 KiB
JSON
Raw Normal View History

2022-10-05 23:12:51 +08:00
{
"name": "koishi-plugin-novelai",
"description": "Generate images by diffusion models",
2024-08-14 23:39:38 +08:00
"version": "1.24.0",
2022-10-05 23:12:51 +08:00
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist",
"data"
2022-10-05 23:12:51 +08:00
],
2022-10-16 00:32:50 +08:00
"browser": {
2022-10-16 13:49:15 +08:00
"image-size": false,
2022-10-16 00:32:50 +08:00
"libsodium-wrappers": false
},
2022-10-06 03:21:15 +08:00
"author": "Ninzore <cillerpro@gmail.com>",
2023-01-06 00:29:43 +08:00
"contributors": [
"Shigma <shigma10826@gmail.com>",
{
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
2023-01-06 00:29:43 +08:00
},
"Ninzore <cillerpro@gmail.com>"
2022-10-06 03:21:15 +08:00
],
2022-10-05 23:12:51 +08:00
"license": "MIT",
2022-10-06 03:21:15 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/koishijs/koishi-plugin-novelai.git"
},
"bugs": {
"url": "https://github.com/koishijs/koishi-plugin-novelai/issues"
},
2022-10-14 20:05:49 +08:00
"homepage": "https://bot.novelai.dev",
2022-10-06 03:21:15 +08:00
"scripts": {
2022-10-11 21:49:22 +08:00
"build": "atsc -b",
2022-10-24 03:00:16 +08:00
"docs:dev": "vitepress dev docs --open",
2022-10-11 21:49:22 +08:00
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
2022-10-06 03:21:15 +08:00
},
"koishi": {
"browser": true,
"service": {
"optional": [
"translator"
]
},
2022-10-06 03:21:15 +08:00
"description": {
"en": "Image Generation. Support [NovelAI](https://novelai.net/), Stable Diffusion and more.",
"zh": "画图插件,支持 [NovelAI](https://novelai.net/)、Stable Diffusion 等",
"zh-TW": "畫圖插件,支持 [NovelAI](https://novelai.net/)、Stable Diffusion 等",
"fr": "Génération des images. Fonctionner sous [NovelAI](https://novelai.net/), Stable Diffusion et plus",
"ja": "画像生成。[NovelAI](https://novelai.net/) や Stable Diffusion などに対応する。"
2022-10-06 03:21:15 +08:00
}
},
2022-10-05 23:12:51 +08:00
"keywords": [
"chatbot",
"koishi",
2022-10-06 03:21:15 +08:00
"plugin",
"novelai",
"ai",
"paint",
"image",
"generate"
2022-10-05 23:12:51 +08:00
],
"peerDependencies": {
2024-06-05 15:41:17 +08:00
"koishi": "^4.17.8"
2022-10-06 03:21:15 +08:00
},
"devDependencies": {
2024-05-30 04:08:13 +08:00
"@cordisjs/vitepress": "^3.2.7",
2024-02-17 00:51:09 +08:00
"@koishijs/plugin-help": "^2.4.3",
2023-10-09 22:10:31 +08:00
"@koishijs/translator": "^1.1.1",
"@types/adm-zip": "^0.5.5",
2023-11-25 23:07:40 +08:00
"@types/libsodium-wrappers-sumo": "^0.7.8",
2024-06-05 15:41:17 +08:00
"@types/node": "^20.14.1",
2022-12-20 15:10:53 +08:00
"atsc": "^1.2.2",
2024-06-05 15:41:17 +08:00
"koishi": "^4.17.8",
"sass": "^1.77.4",
2024-05-30 04:08:13 +08:00
"typescript": "^5.4.5",
2024-02-17 00:51:09 +08:00
"vitepress": "1.0.0-rc.40"
2022-10-07 09:28:05 +08:00
},
"dependencies": {
2024-06-05 15:41:17 +08:00
"adm-zip": "^0.5.13",
2024-02-17 00:51:09 +08:00
"image-size": "^1.1.1",
2023-10-31 15:59:34 +08:00
"libsodium-wrappers-sumo": "^0.7.13"
2022-10-05 23:12:51 +08:00
}
}