forked from ShukantPal/pixi-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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-essentials/ooo-renderer",
"version": "0.0.3",
"description": "Out-of-order rendering facility for PixiJS scene graphs",
"keywords": [
"pixi.js",
"pixi",
"plugins",
"renderer",
"out-of-order-rendering",
"depth-testing",
"depth-buffer",
"depth-rendering"
],
"author": "Shukant Pal <shukantpal@outlook.com>",
"homepage": "https://github.com/SukantPal/pixi-essentials/tree/master/packages/pixi-ooo-renderer#readme",
"license": "MIT",
"main": "lib/pixi-ooo-renderer.js",
"module": "lib/pixi-ooo-renderer.es.js",
"bundle": "dist/pixi-ooo-renderer.js",
"types": "./index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SukantPal/pixi-essentials.git"
},
"scripts": {
"build": "rollup -c node_modules/@pixi-build-tools/rollup-configurator/index.js --silent",
"build:types": "rm -rf compile && tsc && api-extractor run"
},
"bugs": {
"url": "https://github.com/SukantPal/pixi-essentials/issues"
},
"peerDependencies": {
"@pixi-essentials/object-pool": "^0.1.0",
"pixi-batch-renderer": "^2.3.0",
"pixi.js": "^5.2.1",
"pixi-spatial-hash": "1.0.0"
},
"devDependencies": {
"@pixi-essentials/object-pool": "^0.1.0",
"pixi-batch-renderer": "^2.3.0",
"pixi.js": "^5.2.1",
"pixi-spatial-hash": "1.0.0",
"@pixi-build-tools/rollup-configurator": "^1.0.10",
"tslib": "~2.0.1",
"typescript": "~4.0.2",
"eslint": "~7.7.0",
"@pixi-essentials/eslint-config": "~1.0.0",
"rollup": "~2.27.0"
},
"gitHead": "104ab46612eb8d95bde256620b0cd989ec341e96",
"publishConfig": {
"access": "public"
}
}