@teamflojo/floimg-replicate 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +10 -0
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Brett Cooke
3
+ Copyright (c) 2025 Flojo, Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  Replicate AI model integration for floimg, providing access to popular image processing models.
4
4
 
5
+ ## Standing on the Shoulders of Giants
6
+
7
+ This plugin integrates with [Replicate](https://replicate.com/), the amazing platform for running AI models. We provide a consistent FloImg interface while exposing the full power of Replicate's model ecosystem.
8
+
9
+ - **Full Replicate power**: Access to thousands of community models
10
+ - **Native format**: Use Replicate model names and options directly
11
+ - **Their docs are your docs**: See [Replicate documentation](https://replicate.com/docs)
12
+
13
+ FloImg orchestrates the workflow (generate → transform → save). Replicate does what it does best.
14
+
5
15
  ## Installation
6
16
 
7
17
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamflojo/floimg-replicate",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Replicate AI model integration for floimg (FLUX, GFPGAN, DeOldify, Real-ESRGAN)",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -35,7 +35,7 @@
35
35
  "directory": "packages/floimg-replicate"
36
36
  },
37
37
  "peerDependencies": {
38
- "@teamflojo/floimg": "^0.2.0"
38
+ "@teamflojo/floimg": "^0.8.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "replicate": "^1.0.1"
@@ -44,7 +44,7 @@
44
44
  "@types/node": "^22.10.2",
45
45
  "typescript": "^5.7.2",
46
46
  "vitest": "^2.1.8",
47
- "@teamflojo/floimg": "0.4.0"
47
+ "@teamflojo/floimg": "0.9.0"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=18.0.0"