-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.48 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
{
"name": "@mastir/react-diagram",
"version": "1.0.9",
"description": "Simple process flow and flow chart react diagram",
"source": "src/index.js",
"type": "module",
"main": "dist/react-diagram.js",
"module": "dist/react-diagram.module.js",
"umpkg": "dist/react-diagram.umd.js",
"files": [
"dist",
"dist/react-diagram.cjs",
"dist/react-diagram.cjs.map",
"dist/react-diagram.modern.js",
"dist/react-diagram.modern.js.map",
"dist/react-diagram.module.js",
"dist/react-diagram.module.js.map",
"dist/react-diagram.umd.js",
"dist/react-diagram.umd.js.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "microbundle --jsx jsx --jsxImportSource react/jsx-runtime",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mastir/react-diagram.git"
},
"keywords": [
"react",
"diagram",
"diagrams",
"web",
"flow",
"chart",
"flowchart",
"process",
"nodes",
"port",
"canvas",
"links",
"connect"
],
"author": "Yevhen Pochekuiev",
"license": "MIT",
"bugs": {
"url": "https://github.com/mastir/react-diagram/issues"
},
"homepage": "https://github.com/mastir/react-diagram#readme",
"devDependencies": {
"babel-loader": "^9.0.0",
"microbundle": "^0.15.1",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"react": "^18.0.0",
"webpack-node-externals": "^3.0.0"
}
}