f1ow 1.0.0 → 1.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.
package/package.json CHANGED
@@ -1,107 +1,121 @@
1
- {
2
- "name": "f1ow",
3
- "version": "1.0.0",
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
- "yjs": ">=13.0.0",
46
- "y-websocket": ">=2.0.0"
47
- },
48
- "peerDependenciesMeta": {
49
- "konva": {
50
- "optional": false
51
- },
52
- "react-konva": {
53
- "optional": false
54
- },
55
- "zustand": {
56
- "optional": false
57
- },
58
- "yjs": {
59
- "optional": true
60
- },
61
- "y-websocket": {
62
- "optional": true
63
- }
64
- },
65
- "devDependencies": {
66
- "@types/node": "^25.2.1",
67
- "@types/rbush": "^4.0.0",
68
- "@types/react": "^18.3.18",
69
- "@types/react-dom": "^18.3.5",
70
- "@vitejs/plugin-react": "^4.3.4",
71
- "konva": "^9.3.18",
72
- "lucide-react": "^0.468.0",
73
- "nanoid": "^5.0.9",
74
- "rbush": "^4.0.1",
75
- "react": "^18.3.1",
76
- "react-dom": "^18.3.1",
77
- "react-konva": "^18.2.10",
78
- "typescript": "^5.7.3",
79
- "vite": "^6.0.7",
80
- "vite-plugin-dts": "^4.3.0",
81
- "y-websocket": "^3.0.0",
82
- "yjs": "^13.6.29",
83
- "zustand": "^5.0.3"
84
- },
85
- "keywords": [
86
- "canvas",
87
- "drawing",
88
- "konvajs",
89
- "react",
90
- "whiteboard",
91
- "diagram",
92
- "flowchart",
93
- "react-component",
94
- "konva",
95
- "collaborative",
96
- "vector",
97
- "sketch"
98
- ],
99
- "license": "MIT",
100
- "pnpm": {
101
- "overrides": {
102
- "minimatch@9": "9.0.7",
103
- "minimatch@10": "10.2.1",
104
- "ajv": "8.18.0"
105
- }
106
- }
107
- }
1
+ {
2
+ "name": "f1ow",
3
+ "version": "1.1.0",
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
+ "./collaboration": {
25
+ "types": "./dist/lib/collaboration.d.ts",
26
+ "import": "./dist/f1ow-collaboration.js"
27
+ }
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "LICENSE",
32
+ "README.md"
33
+ ],
34
+ "sideEffects": false,
35
+ "scripts": {
36
+ "dev": "vite",
37
+ "build": "vite build",
38
+ "build:lib": "vite build --mode lib && vite build --mode lib-collab",
39
+ "preview": "vite preview",
40
+ "typecheck": "tsc --noEmit",
41
+ "test": "vitest run",
42
+ "test:watch": "vitest",
43
+ "test:coverage": "vitest run --coverage",
44
+ "prepublishOnly": "pnpm typecheck && pnpm build:lib"
45
+ },
46
+ "peerDependencies": {
47
+ "konva": ">=9.0.0",
48
+ "react": ">=19.0.0",
49
+ "react-dom": ">=19.0.0",
50
+ "react-konva": ">=19.0.0",
51
+ "y-websocket": ">=2.0.0",
52
+ "yjs": ">=13.0.0",
53
+ "zustand": ">=5.0.0"
54
+ },
55
+ "peerDependenciesMeta": {
56
+ "konva": {
57
+ "optional": false
58
+ },
59
+ "react-konva": {
60
+ "optional": false
61
+ },
62
+ "zustand": {
63
+ "optional": false
64
+ },
65
+ "yjs": {
66
+ "optional": true
67
+ },
68
+ "y-websocket": {
69
+ "optional": true
70
+ }
71
+ },
72
+ "devDependencies": {
73
+ "@types/node": "^25.6.0",
74
+ "@types/rbush": "^4.0.0",
75
+ "@types/react": "^19.2.2",
76
+ "@types/react-dom": "^19.2.2",
77
+ "@vitejs/plugin-react": "^4.7.0",
78
+ "@vitest/coverage-v8": "^4.1.4",
79
+ "happy-dom": "^20.9.0",
80
+ "konva": "^10.2.5",
81
+ "lucide-react": "^0.468.0",
82
+ "nanoid": "^5.1.9",
83
+ "rbush": "^4.0.1",
84
+ "react": "^19.2.5",
85
+ "react-dom": "^19.2.5",
86
+ "react-konva": "^19.2.3",
87
+ "typescript": "^5.9.3",
88
+ "vite": "^6.4.2",
89
+ "vite-plugin-dts": "^4.5.4",
90
+ "vitest": "^4.1.4",
91
+ "y-websocket": "^3.0.0",
92
+ "yjs": "^13.6.30",
93
+ "zustand": "^5.0.12"
94
+ },
95
+ "keywords": [
96
+ "canvas",
97
+ "drawing",
98
+ "konvajs",
99
+ "react",
100
+ "whiteboard",
101
+ "diagram",
102
+ "flowchart",
103
+ "react-component",
104
+ "konva",
105
+ "collaborative",
106
+ "vector",
107
+ "sketch"
108
+ ],
109
+ "license": "MIT",
110
+ "pnpm": {
111
+ "overrides": {
112
+ "minimatch@9": "9.0.7",
113
+ "minimatch@10": "10.2.3",
114
+ "ajv": "8.18.0",
115
+ "rollup@4": "4.59.0"
116
+ }
117
+ },
118
+ "dependencies": {
119
+ "marked": "^18.0.2"
120
+ }
121
+ }