-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@clarkmcc/ngraph",
"version": "0.3.0",
"description": "A blender-style node editor built on xyflow",
"repository": "[email protected]:clarkmcc/ngraph.git",
"author": "Clark McCauley <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"main": "dist/cjs/main.jsx",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/es/index.js"
}
},
"types": "dist/types/index.d.ts",
"sideEffects": [
"**/*.css"
],
"keywords": [
"react",
"typescript",
"npm"
],
"engines": {
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-docs": "^7.6.8",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/builder-vite": "^7.6.8",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@storybook/test": "^7.6.7",
"@types/dagre": "^0.7.52",
"@types/lodash-es": "^4.17.12",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"glob": "^10.3.10",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.9.5",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-import-css": "^3.4.0",
"rollup-plugin-import-map": "^3.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.69.7",
"storybook": "^7.6.7",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-dts": "^3.7.0",
"vite-plugin-lib-inject-css": "^1.3.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"dependencies": {
"@sroussey/typescript-graph": "^0.3.11",
"@uiw/react-color": "^2.0.6",
"@xyflow/react": "^12.0.0-next.8",
"dagre": "^0.8.5",
"immer": "^10.0.3",
"nanoid": "^5.0.4",
"react-hotkeys-hook": "^4.4.3",
"react-icons": "^5.0.1",
"zustand": "^4.4.7"
}
}