f1ow 0.1.3 → 0.1.4

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 (4) hide show
  1. package/README.md +32 -8
  2. package/dist/f1ow.js +4327 -3447
  3. package/dist/f1ow.umd.cjs +252 -7
  4. package/package.json +99 -94
package/package.json CHANGED
@@ -1,94 +1,99 @@
1
- {
2
- "name": "f1ow",
3
- "version": "0.1.3",
4
- "type": "module",
5
- "description": "Interactive canvas drawing toolkit built on KonvaJS — drop-in React component for diagrams, sketches & whiteboards",
6
- "author": "Nuumz <info@nuumz.com>",
7
- "homepage": "https://github.com/nuumz/f1ow-canvas#readme",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/nuumz/f1ow-canvas.git"
11
- },
12
- "bugs": {
13
- "url": "https://github.com/nuumz/f1ow-canvas/issues"
14
- },
15
- "main": "./dist/f1ow.umd.cjs",
16
- "module": "./dist/f1ow.js",
17
- "types": "./dist/lib/index.d.ts",
18
- "exports": {
19
- ".": {
20
- "types": "./dist/lib/index.d.ts",
21
- "import": "./dist/f1ow.js",
22
- "require": "./dist/f1ow.umd.cjs"
23
- }
24
- },
25
- "files": [
26
- "dist",
27
- "LICENSE",
28
- "README.md"
29
- ],
30
- "sideEffects": false,
31
- "scripts": {
32
- "dev": "vite",
33
- "build": "vite build",
34
- "build:lib": "vite build --mode lib",
35
- "preview": "vite preview",
36
- "typecheck": "tsc --noEmit",
37
- "prepublishOnly": "npm run typecheck && npm run build:lib"
38
- },
39
- "peerDependencies": {
40
- "react": ">=17.0.0",
41
- "react-dom": ">=17.0.0",
42
- "konva": ">=9.0.0",
43
- "react-konva": ">=18.0.0",
44
- "zustand": ">=5.0.0"
45
- },
46
- "peerDependenciesMeta": {
47
- "konva": {
48
- "optional": false
49
- },
50
- "react-konva": {
51
- "optional": false
52
- },
53
- "zustand": {
54
- "optional": false
55
- }
56
- },
57
- "dependencies": {
58
- "lucide-react": "^0.468.0",
59
- "nanoid": "^5.0.9",
60
- "rbush": "^4.0.1",
61
- "y-websocket": "^3.0.0",
62
- "yjs": "^13.6.29"
63
- },
64
- "devDependencies": {
65
- "@types/node": "^25.2.1",
66
- "@types/rbush": "^4.0.0",
67
- "@types/react": "^18.3.18",
68
- "@types/react-dom": "^18.3.5",
69
- "@vitejs/plugin-react": "^4.3.4",
70
- "konva": "^9.3.18",
71
- "react": "^18.3.1",
72
- "react-dom": "^18.3.1",
73
- "react-konva": "^18.2.10",
74
- "typescript": "^5.7.3",
75
- "vite": "^6.0.7",
76
- "vite-plugin-dts": "^4.3.0",
77
- "zustand": "^5.0.3"
78
- },
79
- "keywords": [
80
- "canvas",
81
- "drawing",
82
- "konvajs",
83
- "react",
84
- "whiteboard",
85
- "diagram",
86
- "flowchart",
87
- "react-component",
88
- "konva",
89
- "collaborative",
90
- "vector",
91
- "sketch"
92
- ],
93
- "license": "MIT"
94
- }
1
+ {
2
+ "name": "f1ow",
3
+ "version": "0.1.4",
4
+ "type": "module",
5
+ "description": "Interactive canvas drawing toolkit built on KonvaJS — drop-in React component for diagrams, sketches & whiteboards",
6
+ "author": "Nuumz <info@nuumz.com>",
7
+ "homepage": "https://github.com/nuumz/f1ow-canvas#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/nuumz/f1ow-canvas.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/nuumz/f1ow-canvas/issues"
14
+ },
15
+ "main": "./dist/f1ow.umd.cjs",
16
+ "module": "./dist/f1ow.js",
17
+ "types": "./dist/lib/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/lib/index.d.ts",
21
+ "import": "./dist/f1ow.js",
22
+ "require": "./dist/f1ow.umd.cjs"
23
+ }
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "LICENSE",
28
+ "README.md"
29
+ ],
30
+ "sideEffects": false,
31
+ "peerDependencies": {
32
+ "react": ">=17.0.0",
33
+ "react-dom": ">=17.0.0",
34
+ "konva": ">=9.0.0",
35
+ "react-konva": ">=18.0.0",
36
+ "zustand": ">=5.0.0",
37
+ "yjs": ">=13.0.0",
38
+ "y-websocket": ">=2.0.0"
39
+ },
40
+ "peerDependenciesMeta": {
41
+ "konva": {
42
+ "optional": false
43
+ },
44
+ "react-konva": {
45
+ "optional": false
46
+ },
47
+ "zustand": {
48
+ "optional": false
49
+ },
50
+ "yjs": {
51
+ "optional": true
52
+ },
53
+ "y-websocket": {
54
+ "optional": true
55
+ }
56
+ },
57
+ "devDependencies": {
58
+ "@types/node": "^25.2.1",
59
+ "@types/rbush": "^4.0.0",
60
+ "@types/react": "^18.3.18",
61
+ "@types/react-dom": "^18.3.5",
62
+ "@vitejs/plugin-react": "^4.3.4",
63
+ "konva": "^9.3.18",
64
+ "lucide-react": "^0.468.0",
65
+ "nanoid": "^5.0.9",
66
+ "rbush": "^4.0.1",
67
+ "react": "^18.3.1",
68
+ "react-dom": "^18.3.1",
69
+ "react-konva": "^18.2.10",
70
+ "typescript": "^5.7.3",
71
+ "vite": "^6.0.7",
72
+ "vite-plugin-dts": "^4.3.0",
73
+ "y-websocket": "^3.0.0",
74
+ "yjs": "^13.6.29",
75
+ "zustand": "^5.0.3"
76
+ },
77
+ "keywords": [
78
+ "canvas",
79
+ "drawing",
80
+ "konvajs",
81
+ "react",
82
+ "whiteboard",
83
+ "diagram",
84
+ "flowchart",
85
+ "react-component",
86
+ "konva",
87
+ "collaborative",
88
+ "vector",
89
+ "sketch"
90
+ ],
91
+ "license": "MIT",
92
+ "scripts": {
93
+ "dev": "vite",
94
+ "build": "vite build",
95
+ "build:lib": "vite build --mode lib",
96
+ "preview": "vite preview",
97
+ "typecheck": "tsc --noEmit"
98
+ }
99
+ }