This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
59
60
61
62
{
"name": "pixi-graph",
"version": "1.3.1",
"description": "Graph visualization library using PIXI.js and Graphology",
"keywords": [
"pixi",
"graph"
],
"license": "MIT",
"author": "Jan Zak <[email protected]>",
"repository": "github:zakjan/pixi-graph",
"main": "dist/pixi-graph.cjs.js",
"module": "dist/pixi-graph.esm.js",
"browser": "dist/pixi-graph.umd.min.js",
"types": "dist/pixi-graph.d.ts",
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@pixi-essentials/cull": "^1.1.0",
"@pixi/app": "^6.1.2",
"@pixi/constants": "^6.0.2",
"@pixi/core": "^6.0.2",
"@pixi/display": "^6.0.2",
"@pixi/graphics-smooth": "^0.0.13",
"@pixi/interaction": "^6.1.2",
"@pixi/loaders": "^6.1.2",
"@pixi/math": "^6.0.2",
"@pixi/mixin-get-child-by-name": "^6.1.2",
"@pixi/sprite": "^6.0.2",
"@pixi/text": "^6.1.2",
"@pixi/text-bitmap": "^6.1.2",
"@pixi/ticker": "^6.0.2",
"@pixi/utils": "^6.0.2",
"color-rgba": "^2.2.3",
"deepmerge": "^4.2.2",
"events": "^3.3.0",
"pixi-viewport": "^4.30.4",
"tiny-typed-emitter": "^2.0.3"
},
"peerDependencies": {
"graphology-types": "^0.19.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/color-rgba": "^2.1.0",
"@types/deepmerge": "^2.2.0",
"@types/resize-observer-browser": "^0.1.5",
"graphology-types": "^0.19.2",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.4.1",
"typescript": "^4.2.4"
}
}