forked from zakjan/pixi-graph
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "@team-reflect/pixi-graph",
"version": "1.3.2",
"description": "Graph visualization library using PIXI.js and Graphology",
"keywords": [
"pixi",
"graph"
],
"license": "MIT",
"type": "module",
"author": "Jan Zak <zj@zakjan.cz>",
"repository": "github:team-reflect/pixi-graph",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@pixi-essentials/cull": "^1.1.0",
"@pixi/app": "^6.5.10",
"@pixi/assets": "^6.5.10",
"@pixi/constants": "^6.5.10",
"@pixi/core": "^6.5.10",
"@pixi/display": "^6.5.10",
"@pixi/extensions": "^6.5.10",
"@pixi/graphics": "^6.5.10",
"@pixi/graphics-smooth": "^0.0.30",
"@pixi/interaction": "^6.5.10",
"@pixi/loaders": "^6.5.10",
"@pixi/math": "^6.5.10",
"@pixi/mesh": "^6.5.10",
"@pixi/mixin-get-child-by-name": "^6.5.10",
"@pixi/runner": "^6.5.10",
"@pixi/settings": "^6.5.10",
"@pixi/sprite": "^6.5.10",
"@pixi/text": "^6.5.10",
"@pixi/text-bitmap": "^6.5.10",
"@pixi/ticker": "^6.5.10",
"@pixi/utils": "^6.5.10",
"color-rgba": "^2.2.3",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
"pixi-viewport": "^4.38.0",
"tiny-typed-emitter": "^2.0.3"
},
"peerDependencies": {
"graphology-types": "^0.19.2"
},
"devDependencies": {
"@types/color-rgba": "^2.1.0",
"@types/resize-observer-browser": "^0.1.5",
"graphology-types": "^0.19.2",
"tsup": "^7.2.0",
"typescript": "^5.1.0"
}
}