forked from DomParfitt/graphviz-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.65 KB
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
{
"name": "@sequencemedia/graphviz-react",
"version": "0.2.149",
"description": "React component for displaying Graphviz graphs",
"keywords": [
"Graphviz",
"React",
"D3"
],
"main": "./lib/GraphvizReact.js",
"type": "module",
"types": "./lib/GraphvizReact.d.ts",
"author": {
"name": "Jonathan Perry for Sequence Media Limited",
"email": "sequencemedia@sequencemedia.net",
"url": "https://sequencemedia.net"
},
"contributors": [
"Dom Parfitt (https://github.com/DomParfitt/graphviz-react.git)"
],
"license": "ISC",
"engines": {
"node": ">=18.12.0 <=21.7.3 || >=22.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sequencemedia/graphviz-react.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test": "jest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"classnames": "^2.5.1",
"debug": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-syntax-jsx": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@hpcc-js/wasm-graphviz": "^1.21.1",
"@sequencemedia/eslint-config-standard": "^0.2.107",
"@sequencemedia/eslint-config-typescript": "^0.1.182",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/d3": "^7.4.3",
"@types/d3-graphviz": "^2.6.10",
"@types/d3-selection": "^3.0.11",
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"babel-jest": "^30.3.0",
"core-js": "^3.48.0",
"d3": "^7.9.0",
"d3-graphviz": "^5.6.0",
"d3-selection": "^3.0.0",
"eslint": "9.38.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-component-snapshot": "^0.0.168",
"react-dom": "^19.2.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@hpcc-js/wasm-graphviz": "^1.10.0",
"d3": "^7.9.0",
"d3-graphviz": "^5.6.0",
"d3-selection": "^3.0.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"exports": {
".": "./lib/GraphvizReact.js",
"./jsx": "./src/GraphvizReact.jsx",
"./tsx": "./src/GraphvizReact.tsx"
}
}