-
Notifications
You must be signed in to change notification settings - Fork 204
/
package.json
86 lines (86 loc) · 2.25 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
{
"name": "koishi-plugin-novelai",
"description": "Generate images by diffusion models",
"version": "1.24.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist",
"data"
],
"browser": {
"image-size": false,
"libsodium-wrappers": false
},
"author": "Ninzore <[email protected]>",
"contributors": [
"Shigma <[email protected]>",
{
"name": "Maiko Tan",
"email": "[email protected]"
},
"Ninzore <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koishijs/koishi-plugin-novelai.git"
},
"bugs": {
"url": "https://github.com/koishijs/koishi-plugin-novelai/issues"
},
"homepage": "https://bot.novelai.dev",
"scripts": {
"build": "atsc -b",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"koishi": {
"browser": true,
"service": {
"optional": [
"translator"
]
},
"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 などに対応する。"
}
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"novelai",
"ai",
"paint",
"image",
"generate"
],
"peerDependencies": {
"koishi": "^4.17.8"
},
"devDependencies": {
"@cordisjs/vitepress": "^3.2.7",
"@koishijs/plugin-help": "^2.4.3",
"@koishijs/translator": "^1.1.1",
"@types/adm-zip": "^0.5.5",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/node": "^20.14.1",
"atsc": "^1.2.2",
"koishi": "^4.17.8",
"sass": "^1.77.4",
"typescript": "^5.4.5",
"vitepress": "1.0.0-rc.40"
},
"dependencies": {
"adm-zip": "^0.5.13",
"image-size": "^1.1.1",
"libsodium-wrappers-sumo": "^0.7.13"
}
}