This repository was archived by the owner on Mar 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.27 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
{
"name": "@ts-graphviz/react",
"version": "0.8.0",
"license": "MIT",
"author": "kamiazya <yuki@kamiazya.tech>",
"description": "Graphviz-dot Renderer for React.",
"repository": {
"type": "git",
"url": "https://github.com/ts-graphviz/react.git"
},
"bugs": {
"url": "https://github.com/ts-graphviz/react/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kamiazya"
},
"keywords": [
"graphviz",
"dot",
"react"
],
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"exports": {
"import": "./lib/index.mjs",
"default": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"scripts": {
"example": "ts-node example/example",
"build": "ts-node rollup.build",
"test": "jest",
"lint": "eslint -c .eslintrc.json --ext ts,tsx src"
},
"peerDependencies": {
"react": ">=16.8.0 || >=17"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-dom": "^17.0.1",
"react-reconciler": "^0.26.1",
"ts-graphviz": "^0.14.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.3",
"@testing-library/react-hooks": "^4.0.0",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-reconciler": "^0.18.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^ 7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^26.6.3",
"jest-graphviz": "^0.4.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.36.1",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}