-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "wgbh-springroll-game",
"version": "2.0.0",
"description": "Framework for SpringRoll 2 games",
"main": "dist/gamelib.js",
"typings": "dts/index.d.ts",
"scripts": {
"build": "rollup -c -m",
"docs": "typedoc --out docs src --mode file --ignoreCompilerErrors",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:WGBH/wgbh-springroll-game.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@pixi/animate": "^2.0.5",
"@pixi/sound": "^4.3.1",
"@types/eases": "^1.0.2",
"pixi.js": "^6.5.8",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.34.1",
"springroll": "^2.4.4",
"tslib": "^2.4.1",
"typedoc": "^0.14.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@pixi/animate": "^2.0.2",
"@pixi/sound": "^4.2.0",
"pixi.js": "^6.5.1",
"springroll": "^2.4.4"
},
"dependencies": {
"eases": "^1.0.8"
}
}