@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.
@@ -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.1.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/core.git",
8
- "directory": "packages/workflows"
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.js",
20
- "require": "./dist/index.cjs"
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.js",
25
- "require": "./dist/comfyui/index.cjs"
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": "workspace:*",
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
  }