-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
25 lines (25 loc) · 935 Bytes
/
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
{
"name": "discord-multiplayer-template",
"private": true,
"version": "1.1",
"description": "A quickstart Phaser template for creating multiplayer Discord Activities",
"main": "index.js",
"scripts": {
"dev": "pnpm run --filter \"./packages/**\" --parallel dev",
"postinstall": "npm run install-client && npm run install-server",
"install-client": "cd \"./packages/client\" && npm install",
"install-server": "cd \"./packages/server\" && npm install",
"client-build": "cd \"./packages/client\" && npm run build",
"tunnel": "npm run client-build && cloudflared tunnel --url http://localhost:3001"
},
"engines": {
"node": ">=21.0.0"
},
"author": "Phaser Studio Inc <[email protected]> (https://www.phaser.io)",
"license": "MIT",
"licenseUrl": "https://www.opensource.org/licenses/mit-license.php",
"devDependencies": {
"@types/node": "^20.12.11",
"cloudflared": "^0.5.3"
}
}