-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "phaser-plugin-display-list-watcher",
"version": "1.2.1",
"description": "Shows the scene display lists",
"keywords": [
"phaser",
"phaser-plugin"
],
"author": "samme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/samme/phaser-plugin-display-list-watcher.git"
},
"bugs": {
"url": "https://github.com/samme/phaser-plugin-display-list-watcher/issues"
},
"homepage": "https://github.com/samme/phaser-plugin-display-list-watcher#readme",
"type": "module",
"main": "dist/display-list-watcher.umd.js",
"module": "dist/display-list-watcher.es.js",
"files": [
"dist/display-list-watcher.es.js",
"dist/display-list-watcher.umd.js"
],
"scripts": {
"build": "vite build",
"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.88.2",
"vite": "^6.0.2",
"vitest": "^3.0.7"
},
"peerDependencies": {
"phaser": "^3.60.0"
}
}