-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
63 lines (63 loc) · 2.09 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
63
{
"name": "pixi-cull",
"version": "2.1.0",
"description": "a library to visibly cull objects designed to work with pixi.js",
"main": "dist/pixi-cull.min.js",
"module": "dist/pixi-cull.es.js",
"types": "@types/index.d.ts",
"scripts": {
"start": "rollup -c rollup.dev.js --watch",
"build": "rollup -c rollup.config.js",
"build-demo": "rollup -c rollup.demo.js",
"declaration": "tsc --esModuleInterop --skipLibCheck --declaration --emitDeclarationOnly code/index.ts --declarationDir @types",
"docs": "typedoc --excludeProtected --out docs/jsdoc code/index.ts",
"prepublishOnly": "yarn build && yarn build-demo && yarn declaration && yarn docs"
},
"keywords": [
"pixi.js",
"cull",
"pixi-viewport",
"viewport",
"spatial",
"hash",
"simple",
"cull"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/pixi-cull.git"
},
"bugs": {
"url": "https://github.com/davidfig/pixi-cull/issues"
},
"homepage": "https://github.com/davidfig/pixi-cull#readme",
"author": "David S. Figatner",
"license": "MIT",
"peerDependencies": {
"pixi.js": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@webdoc/cli": "^1.2.0",
"fork-me-github": "^1.2.0",
"jsdoc": "^3.6.5",
"jsdoc-plugin-typescript": "^2.0.6",
"pixi-viewport": "^4.13.2",
"pixi.js": "6.0.1",
"rollup": "^2.58.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"yy-fps": "^1.1.0",
"yy-jsdoc-template": "^1.3.0",
"yy-random": "^1.8.0"
}
}