-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "gojs-react",
"version": "1.1.2",
"description": "A set of React components to manage GoJS Diagrams, Palettes, and Overviews",
"main": "lib/index.js",
"module": "lib/esm/gojsreact.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "npm-run-all clean bundle entry dts",
"clean": "run-p \"clean:*\"",
"clean:dist": "rimraf dist",
"clean:lib": "rimraf lib",
"bundle": "rollup --config",
"entry": "node ./scripts/makeEntry.mjs",
"dts": "node ./scripts/moveDts.mjs",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"gojs"
],
"author": "Northwoods Software",
"license": "See LICENSE.md file",
"dependencies": {
"tslib": "~2.5.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/react": "^18.0.27",
"fs-extra": "^11.1.0",
"gojs": "^2.3.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"rimraf": "^4.1.2",
"rollup": "^3.15.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"gojs": ">=2.1.22",
"react": ">=16.0.0"
},
"files": [
"/dist",
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/NorthwoodsSoftware/gojs-react"
}
}