@theclearsky/react-blender-nodes 0.0.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.
- package/LICENSE +21 -0
- package/README.md +186 -0
- package/dist/index.d.ts +501 -0
- package/dist/react-blender-nodes.css +1 -0
- package/dist/react-blender-nodes.es.js +11527 -0
- package/dist/react-blender-nodes.es.js.map +1 -0
- package/dist/react-blender-nodes.umd.js +107 -0
- package/dist/react-blender-nodes.umd.js.map +1 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@theclearsky/react-blender-nodes",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "Deepak Prasad <TheClearSky@github.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/TheClearSky/react-blender-nodes.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/TheClearSky/react-blender-nodes",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"react",
|
|
14
|
+
"blender",
|
|
15
|
+
"nodes",
|
|
16
|
+
"graph",
|
|
17
|
+
"editor"
|
|
18
|
+
],
|
|
19
|
+
"description": "A React component library inspired by Blender's node editor interface, providing a flexible and customizable node-based graph editor for web applications.",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"main": "./dist/react-blender-nodes.umd.cjs",
|
|
24
|
+
"module": "./dist/react-blender-nodes.es.js",
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/react-blender-nodes.es.js",
|
|
30
|
+
"require": "./dist/react-blender-nodes.umd.cjs"
|
|
31
|
+
},
|
|
32
|
+
"./style.css": "./dist/react-blender-nodes.css"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsc -b && vite build",
|
|
36
|
+
"lint": "eslint .",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"pretty": "prettier --write .",
|
|
39
|
+
"storybook": "storybook dev -p 6006",
|
|
40
|
+
"build-storybook": "storybook build",
|
|
41
|
+
"checklist": "npm run pretty && npm i && npm run build && npm run build-storybook"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": "^19.1.1",
|
|
45
|
+
"react-dom": "^19.1.1"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@fontsource/dejavu-sans": "^5.2.5",
|
|
49
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
50
|
+
"@xyflow/react": "^12.8.4",
|
|
51
|
+
"class-variance-authority": "^0.7.1",
|
|
52
|
+
"clsx": "^2.1.1",
|
|
53
|
+
"immer": "^10.1.3",
|
|
54
|
+
"lucide-react": "^0.542.0",
|
|
55
|
+
"prettier": "^3.6.2",
|
|
56
|
+
"tailwind-merge": "^3.3.1",
|
|
57
|
+
"zod": "^4.1.5"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@chromatic-com/storybook": "^4.1.1",
|
|
61
|
+
"@eslint/js": "^9.35.0",
|
|
62
|
+
"@storybook/addon-a11y": "^9.1.5",
|
|
63
|
+
"@storybook/addon-docs": "^9.1.5",
|
|
64
|
+
"@storybook/addon-vitest": "^9.1.5",
|
|
65
|
+
"@storybook/react-vite": "^9.1.5",
|
|
66
|
+
"@tailwindcss/vite": "^4.1.13",
|
|
67
|
+
"@types/lodash": "^4.17.20",
|
|
68
|
+
"@types/node": "^24.3.1",
|
|
69
|
+
"@types/react": "^19.1.12",
|
|
70
|
+
"@types/react-dom": "^19.1.9",
|
|
71
|
+
"@vitejs/plugin-react": "^5.0.2",
|
|
72
|
+
"@vitest/browser": "^3.2.4",
|
|
73
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
74
|
+
"eslint": "^9.35.0",
|
|
75
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
76
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
77
|
+
"eslint-plugin-storybook": "^9.1.5",
|
|
78
|
+
"globals": "^16.3.0",
|
|
79
|
+
"playwright": "^1.55.0",
|
|
80
|
+
"storybook": "^9.1.1",
|
|
81
|
+
"storybook-addon-test-codegen": "^2.0.1",
|
|
82
|
+
"tailwindcss": "^4.1.12",
|
|
83
|
+
"tw-animate-css": "^1.3.8",
|
|
84
|
+
"typescript": "~5.9.2",
|
|
85
|
+
"typescript-eslint": "^8.42.0",
|
|
86
|
+
"vite": "^7.1.4",
|
|
87
|
+
"vite-plugin-dts": "^4.5.4",
|
|
88
|
+
"vitest": "^3.2.4"
|
|
89
|
+
},
|
|
90
|
+
"publishConfig": {
|
|
91
|
+
"registry": "https://registry.npmjs.org/"
|
|
92
|
+
}
|
|
93
|
+
}
|