-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.94 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-game-camera",
"version": "1.0.2",
"description": "A flexible and non-opinionated way to add camera effects to your PIXI application via containers.",
"main": "index.js",
"scripts": {
"rm:lib": "rm -rf lib",
"rm:bundle": "rm -rf pixi-game-camera.js",
"tsconfig": "tsc --init --declaration --allowSyntheticDefaultImports --target esnext --outDir lib",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run rm:lib && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "npm run rm:bundle && rollup -c",
"bundle:watch": "rollup -c --watch",
"test": "node test/server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:robertcorponoi/pixi-game-camera.git"
},
"keywords": [
"pixi",
"PIXI",
"pixi.js",
"game",
"camera",
"shake",
"fade",
"zoom",
"pan",
"rotate"
],
"author": "Robert Corponoi",
"license": "MIT",
"module": "pixi-game-camera.js",
"typings": "lib/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-object-rest-spread": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@babel/preset-typescript": "^7.12.16",
"@pixi/core": "^5.3.7",
"@pixi/display": "^5.3.7",
"@pixi/sprite": "^5.3.7",
"@pixi/ticker": "^5.3.7",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"fastify": "^3.11.0",
"fastify-static": "^3.4.0",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.5"
},
"dependencies": {
"hypergiant": "^3.1.0"
}
}