flowsfarm 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +120 -0
  2. package/package.json +39 -0
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "flowsfarm",
3
+ "version": "0.1.0",
4
+ "description": "Local-first workflow synchronization for n8n",
5
+ "type": "module",
6
+ "bin": {
7
+ "flowsfarm": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "scripts": {
14
+ "build": "bun build ./src/index.ts --outdir ./dist --target bun --minify",
15
+ "dev": "bun run --watch src/index.ts",
16
+ "typecheck": "tsc --noEmit",
17
+ "prepublishOnly": "bun run build"
18
+ },
19
+ "keywords": [
20
+ "n8n",
21
+ "workflow",
22
+ "sync",
23
+ "automation",
24
+ "cli"
25
+ ],
26
+ "author": "Filipe Fernandes",
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/filipexyz/flowsfarm.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/filipexyz/flowsfarm/issues"
34
+ },
35
+ "homepage": "https://github.com/filipexyz/flowsfarm#readme",
36
+ "engines": {
37
+ "bun": ">=1.0.0"
38
+ }
39
+ }