-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 796 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 796 Bytes
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
{
"name": "monster-hotel",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"phaser:dev": "cd phaser && yarn dev",
"phaser:build": "cd phaser && yarn build",
"phaser:test": "cd phaser && yarn vitest",
"dev": "yarn phaser:dev",
"build": "yarn phaser:build",
"check": "biome check .",
"lint": "biome check --write .",
"format": "biome format --write .",
"test": "yarn phaser:test",
"test:e2e": "yarn --cwd phaser test:e2e"
},
"imports": {
"#phaser/*": "./phaser/*.js"
},
"workspaces": [
"phaser"
],
"packageManager": "yarn@4.12.0",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24 <25",
"npm": "please use yarn",
"pnpm": "please use yarn"
}
}