forked from jnsmalm/pixi3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
{
"name": "pixi3d",
"version": "1.4.1",
"description": "The 3D renderer for PixiJS. Seamless integration with 2D applications.",
"main": "dist/pixi3d.js",
"files": [
"dist/**/*",
"types/**/*"
],
"types": "types/index.d.ts",
"scripts": {
"build": "webpack",
"prepare": "rimraf dist types && npm run build",
"serve": "webpack-dev-server --open --config serve/serve.config.js",
"docs": "typedoc",
"preversion": "npm run build",
"version": "npm run docs && git add . && git reset -- docs/CNAME",
"test": "webpack-dev-server --open --config test/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnsmalm/pixi3d.git"
},
"author": "Jens Malmborg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnsmalm/pixi3d/issues"
},
"homepage": "https://github.com/jnsmalm/pixi3d#readme",
"peerDependencies": {
"@pixi/core": "^6.0.2",
"@pixi/constants": "^6.0.2",
"@pixi/display": "^6.0.2",
"@pixi/interaction": "^6.0.2",
"@pixi/loaders": "^6.0.2",
"@pixi/math": "^6.0.2",
"@pixi/mixin-get-child-by-name": "^6.0.2",
"@pixi/settings": "^6.0.2",
"@pixi/sprite": "^6.0.2",
"@pixi/ticker": "^6.0.2",
"@pixi/utils": "^6.0.2"
},
"devDependencies": {
"chai": "^4.3.4",
"gl-matrix": "^3.3.0",
"mocha": "^8.4.0",
"mocha-loader": "^5.1.5",
"pixelmatch": "^5.2.1",
"pixi.js": "^6.0.2",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.0",
"tslib": "^2.3.0",
"typedoc": "^0.22.9",
"typescript": "^4.2.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.10.3",
"webpack-glsl-loader": "^1.0.1"
}
}