-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "last-one-flying",
"description": "An arcade survival shooter made with Phaser 3.",
"version": "0.7.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/colinkiama/last-one-flying.git"
},
"author": "Colin Kiama <colinkiama@gmail.com> (https://colinkiama.com)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/colinkiama/last-one-flying/issues"
},
"homepage": "https://github.com/colinkiama/last-one-flying#readme",
"scripts": {
"dev": "bun scripts/dev/index.js",
"prod": "bun scripts/prod.js",
"export-internal": "bun scripts/export.js",
"publish-internal": "bun scripts/publish.js",
"export": "npm-run-all -s prod export-internal",
"publish": "npm-run-all -s prod publish-internal"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/archiver": "^6.0.3",
"archiver": "^7.0.1",
"bun-types": "latest",
"npm-run-all": "^4.1.5"
}
}