-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@yworks/react-yfiles-core",
"version": "2.0.1",
"author": {
"name": "yFiles for HTML team @ yWorks GmbH",
"email": "yfileshtml@yworks.com"
},
"description": "This module provides shared functionality for the yFiles React components.",
"keywords": ["react", "yfiles", "javascript", "typescript", "library", "graph", "diagram"],
"homepage": "https://www.yworks.com/",
"repository": {
"type": "git",
"url": "https://github.com/yWorks/react-yfiles-core.git"
},
"bugs": {
"url": "https://github.com/yWorks/react-yfiles-core/issues"
},
"license": "SEE LICENSE IN ./LICENSE",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"dev": "tsup --watch --sourcemap --dts --format esm src/index.ts",
"build": "tsup --clean --dts --format esm src/index.ts"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"yfiles": ">=26"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"files": [
"LICENSE",
"dist",
"package.json",
"README.md"
],
"publishConfig": {
"registry": "https://npm.yworks.home"
}
}