-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "@yworks/react-yfiles-orgchart",
"version": "1.2.1",
"author": {
"name": "yFiles for HTML team @ yWorks GmbH",
"email": "[email protected]"
},
"description": "yFiles React Organization Chart Component - A powerful and versatile React component based on the yFiles library, allows you to seamlessly incorporate dynamic and interactive organization charts into your applications.",
"keywords": ["react", "yfiles", "javascript", "typescript", "library", "graph", "diagram", "organization chart", "interactive"],
"homepage": "https://docs.yworks.com/react-yfiles-orgchart",
"repository": {
"type": "git",
"url": "https://github.com/yWorks/react-yfiles-orgchart.git"
},
"bugs": {
"url": "https://github.com/yWorks/react-yfiles-orgchart/issues"
},
"license": "SEE LICENSE IN ./LICENSE",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"types": "./dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"dev": "tsup --watch --sourcemap --dts --format esm src/index.ts && api-extractor run --local",
"build": "tsup --clean --dts --format esm src/index.ts && api-extractor run --local"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"yfiles": "^26.0.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@microsoft/api-extractor": "^7.39.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@yworks/react-yfiles-core": "^2.0.0"
},
"files": [
"LICENSE",
"dist",
"package.json",
"README.md"
],
"publishConfig": {
"registry": "https://npm.yworks.home"
}
}