This repository was archived by the owner on Nov 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.84 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.84 KB
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
{
"name": "koishi-plugin-drawluna",
"description": "Image generation plugin using OpenAI DALL-E API",
"version": "0.0.3",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"license": "MIT",
"keywords": [
"koishi",
"plugin",
"service",
"image",
"draw",
"dalle",
"openai"
],
"author": "drawluna",
"repository": {
"type": "git",
"url": "https://github.com/ChatLunaLab/drawluna.git",
"directory": "."
},
"dependencies": {
"form-data": "^4.0.0"
},
"devDependencies": {
"@koishijs/client": "^5.30.7",
"@types/form-data": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^7.18.1-alpha.3",
"@typescript-eslint/parser": "^8.29.1-alpha.3",
"esbuild": "^0.25.2",
"esbuild-register": "npm:@shigma/esbuild-register@^1.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"yakumo": "^1.0.0",
"yakumo-esbuild": "^1.0.0",
"yakumo-mocha": "^1.0.0",
"yakumo-tsc": "^1.0.0"
},
"peerDependencies": {
"koishi": "^4.18.7"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"lint": "yarn eslint src --ext=ts",
"lint-fix": "yarn eslint src --ext=ts --fix"
},
"koishi": {
"description": {
"zh": "基于多平台 API 的图片生成插件,支持即梦(豆包),OpenAI (GPT-IMAGE-1)的绘图 API,提供文生图、图生图和图像变体"
},
"service": {
"implements": [
"drawluna"
]
}
}
}