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.
- package/README.md +32 -8
- package/dist/f1ow.js +4327 -3447
- package/dist/f1ow.umd.cjs +252 -7
- package/package.json +99 -94
package/package.json
CHANGED
|
@@ -1,94 +1,99 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "f1ow",
|
|
3
|
-
"version": "0.1.
|
|
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
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
48
|
-
"optional": false
|
|
49
|
-
},
|
|
50
|
-
"
|
|
51
|
-
"optional":
|
|
52
|
-
},
|
|
53
|
-
"
|
|
54
|
-
"optional":
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
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
|
+
}
|