-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
93 lines (93 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "pixi3d",
"version": "2.5.0",
"description": "The 3D renderer for PixiJS. Seamless integration with 2D applications.",
"main": "dist/cjs/pixi5/pixi3d.js",
"module": "dist/esm/pixi5/pixi3d.js",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/esm/pixi5/pixi3d.js"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/cjs/pixi5/pixi3d.js"
}
},
"./pixi7": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/esm/pixi7/pixi3d.js"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/cjs/pixi7/pixi3d.js"
}
}
},
"typesVersions": {
"*": {
"*": [
"./types/index.d.ts"
],
"pixi7": [
"./types/index.d.ts"
]
}
},
"files": [
"dist/**/*",
"types/**/*"
],
"types": "types/index.d.ts",
"scripts": {
"build": "rimraf dist && rollup --config rollup.build.js",
"prepublishOnly": "npm run build && npm run types",
"start": "rollup --watch --config rollup.serve.js",
"docs": "typedoc",
"preversion": "npm run build",
"version": "npm run docs && git add . && git reset -- docs/CNAME",
"test": "PIXI_VERSION=7.2.4 mocha test/puppeteer-test-context.mjs --timeout 10000 --slow 5000",
"test:pixi5": "PIXI_VERSION=5.3.0 mocha test/puppeteer-test-context.mjs --timeout 10000 --slow 5000",
"test:pixi6": "PIXI_VERSION=6.5.8 mocha test/puppeteer-test-context.mjs --timeout 10000 --slow 5000",
"test:pixi7": "PIXI_VERSION=7.2.4 mocha test/puppeteer-test-context.mjs --timeout 10000 --slow 5000",
"test:browser": "rollup --watch --config rollup.test.js",
"types": "rimraf types && tsc --emitDeclarationOnly",
"check-types": "tsc --noEmit"
},
"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",
"devDependencies": {
"@pixi/assets": "^6.5.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"chai": "^4.3.6",
"cors": "^2.8.5",
"esbuild": "^0.15.10",
"express": "^4.18.1",
"gl-matrix": "^3.3.0",
"mocha": "^10.0.0",
"pixelmatch": "^5.2.1",
"pixi.js": "^6.5.1",
"pngjs": "^6.0.0",
"puppeteer": "^18.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-jscc": "^2.0.0",
"rollup-plugin-serve": "^2.0.0",
"tslib": "^2.3.0",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
}
}