-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 KB
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
{
"name": "phaser-editor-template-rollup",
"version": "1.2.0",
"description": "A Phaser 3 template using Rollup.",
"scripts": {
"dev": "rollup --watch --config rollup/rollup.config.dev.mjs --no-treeshake",
"build": "rollup --config rollup/rollup.config.prod.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-rollup.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-rollup/issues"
},
"homepage": "https://github.com/phaserjs/template-rollup#readme",
"dependencies": {
"phaser": "^3.90.0"
},
"devDependencies": {
"@babel/preset-env": "7.26.9",
"@rollup/plugin-alias": "5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "28.0.3",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"rollup": "4.40.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "3.0.1",
"rollup-plugin-glslify": "^1.3.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "3.0.0"
}
}