@dickpy/dsh-imagegen 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@dickpy/dsh-imagegen",
3
+ "description": "AI 生图 (image generation) plugin for the dsh web GUI: text-to-image and image-to-image through a configurable OpenAI-compatible endpoint (gpt-image-2 / gpt-image-1 / dall-e-3), with a settings card for api_url / api_key and a sidebar entry opening a split-pane generation studio.",
4
+ "version": "1.0.0",
5
+ "type": "module",
6
+ "main": "lib/index.js",
7
+ "exports": {
8
+ ".": "./lib/index.js",
9
+ "./client": "./lib/client.js",
10
+ "./package.json": "./package.json"
11
+ },
12
+ "dsh": {
13
+ "bundle": {
14
+ "patch": "./cordis.patch.yml"
15
+ },
16
+ "client": {
17
+ "inject": [
18
+ "@deepseek-ai/dsh-client-runtime",
19
+ "@deepseek-ai/dsh-client-connection",
20
+ "@deepseek-ai/dsh-client-ui-settings"
21
+ ],
22
+ "platform": "web"
23
+ }
24
+ },
25
+ "dependencies": {
26
+ "schemastery": "^3.18.0"
27
+ },
28
+ "devDependencies": {
29
+ "@deepseek-ai/cordis": "^4.0.1",
30
+ "@deepseek-ai/dsh-client-connection": "^0.1.0-rc.6",
31
+ "@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
32
+ "@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
33
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.0-rc.6",
34
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.0-rc.6",
35
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6",
36
+ "@deepseek-ai/dsh-host-webserver": "^0.1.0-rc.6",
37
+ "@deepseek-ai/dsh-settings": "^0.1.0-rc.6",
38
+ "@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.6",
39
+ "@types/node": "^22.20.0",
40
+ "@types/react": "~18.3.1",
41
+ "@types/react-dom": "^18.3.5",
42
+ "jsdom": "25.0.1",
43
+ "lightningcss": "1.32.0",
44
+ "react": "^18.3.1",
45
+ "react-dom": "^18.3.1",
46
+ "schemastery": "^3.18.0",
47
+ "tsdown": "0.22.2",
48
+ "typescript": "~5.7.2"
49
+ },
50
+ "files": [
51
+ "lib",
52
+ "src",
53
+ "cordis.patch.yml",
54
+ "README.md"
55
+ ],
56
+ "license": "Apache-2.0",
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "git+https://github.com/dickpy/dsh-imagegen.git"
60
+ },
61
+ "scripts": {
62
+ "build": "tsdown",
63
+ "watch": "tsdown --watch",
64
+ "typecheck": "tsc --noEmit"
65
+ }
66
+ }