-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 836 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
26
27
28
29
30
31
32
33
{
"name": "phaser-plugin-sound-watcher",
"version": "1.0.1",
"type": "module",
"main": "dist/sound-watcher-plugin.umd.js",
"module": "dist/sound-watcher-plugin.es.js",
"files": [
"dist/sound-watcher-plugin.es.js",
"dist/sound-watcher-plugin.umd.js"
],
"scripts": {
"build": "vite build",
"postbuild": "rm -rv dist/*.{mp3,png}",
"check": "biome check src",
"contents": "npm pack --dry-run",
"dev": "vite",
"fix": "biome check --write *.js src",
"prepublishOnly": "vitest run package.test.js",
"preversion": "./preversion.sh",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"phaser": "3.87.0",
"vite": "^6.0.9",
"vitest": "^2.1.9"
},
"peerDependencies": {
"phaser": "^3.60.0"
}
}