@genfeedai/workflows 0.1.0 → 0.2.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/dist/index.d.mts +14 -1
- package/dist/index.d.ts +14 -1
- package/dist/index.js +439 -96
- package/dist/index.mjs +437 -96
- package/metadata/catalog.json +12 -0
- package/package.json +10 -8
- package/workflows/lora-dataset-generator.json +754 -0
package/metadata/catalog.json
CHANGED
|
@@ -71,6 +71,18 @@
|
|
|
71
71
|
"defaultModel": "nano-banana-pro",
|
|
72
72
|
"inputTypes": ["text"],
|
|
73
73
|
"outputTypes": ["video", "image"]
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"slug": "lora-dataset-generator",
|
|
77
|
+
"title": "LoRA Dataset Generator",
|
|
78
|
+
"description": "Generate 20 varied training images from 3 reference identity photos across frontal, three-quarter, side profile, and variety shots",
|
|
79
|
+
"category": "image-generation",
|
|
80
|
+
"tags": ["lora", "dataset", "training", "portrait", "identity"],
|
|
81
|
+
"tier": "free",
|
|
82
|
+
"icon": "📷",
|
|
83
|
+
"defaultModel": "nano-banana-pro",
|
|
84
|
+
"inputTypes": ["image", "text"],
|
|
85
|
+
"outputTypes": ["image"]
|
|
74
86
|
}
|
|
75
87
|
]
|
|
76
88
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genfeedai/workflows",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"sideEffects": false,
|
|
4
5
|
"license": "AGPL-3.0",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/genfeedai/
|
|
8
|
-
"directory": "
|
|
8
|
+
"url": "git+https://github.com/genfeedai/packages.git",
|
|
9
|
+
"directory": "workflows"
|
|
9
10
|
},
|
|
10
11
|
"publishConfig": {
|
|
11
12
|
"access": "public",
|
|
@@ -16,13 +17,13 @@
|
|
|
16
17
|
"exports": {
|
|
17
18
|
".": {
|
|
18
19
|
"types": "./dist/index.d.ts",
|
|
19
|
-
"import": "./dist/index.
|
|
20
|
-
"require": "./dist/index.
|
|
20
|
+
"import": "./dist/index.mjs",
|
|
21
|
+
"require": "./dist/index.js"
|
|
21
22
|
},
|
|
22
23
|
"./comfyui": {
|
|
23
24
|
"types": "./dist/comfyui/index.d.ts",
|
|
24
|
-
"import": "./dist/comfyui/index.
|
|
25
|
-
"require": "./dist/comfyui/index.
|
|
25
|
+
"import": "./dist/comfyui/index.mjs",
|
|
26
|
+
"require": "./dist/comfyui/index.js"
|
|
26
27
|
},
|
|
27
28
|
"./workflows/*": "./workflows/*"
|
|
28
29
|
},
|
|
@@ -37,7 +38,8 @@
|
|
|
37
38
|
"prepublishOnly": "bun run build"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
40
|
-
"@genfeedai/types": "
|
|
41
|
+
"@genfeedai/types": "^0.2.0",
|
|
42
|
+
"@types/node": "^25.2.3",
|
|
41
43
|
"tsup": "8.4.0",
|
|
42
44
|
"typescript": "5.9.3"
|
|
43
45
|
}
|