forked from koishijs/novelai-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.67 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
{
"name": "koishi-plugin-novelai",
"description": "Generate images by NovelAI",
"version": "1.12.7",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"browser": {
"image-size": false,
"libsodium-wrappers": false
},
"author": "Ninzore <[email protected]>",
"maintainers": [
"Shigma <[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,
"description": {
"en": "Generate images by [NovelAI](https://novelai.net/)",
"zh": "基于 [NovelAI](https://novelai.net/) 的画图插件",
"zh-TW": "基於 [NovelAI](https://novelai.net/) 的畫圖插件",
"fr": "Générer des images sur [Novel AI](https://novelai.net)"
}
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"novelai",
"ai",
"paint",
"image",
"generate"
],
"peerDependencies": {
"koishi": "^4.9.9"
},
"devDependencies": {
"@koishijs/plugin-help": "^1.2.5",
"@types/libsodium-wrappers": "^0.7.10",
"@types/node": "^17.0.45",
"atsc": "^1.1.2",
"koishi": "^4.9.9",
"sass": "^1.55.0",
"typescript": "^4.8.4",
"vitepress": "1.0.0-alpha.20"
},
"dependencies": {
"image-size": "^1.0.2",
"libsodium-wrappers": "^0.7.10"
}
}