-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.5 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
{
"name": "phaser-editor-template-svelte",
"description": "A Phaser 3 project template that demonstrates Svelte communication and uses Vite for bundling.",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-svelte.git"
},
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-svelte/issues"
},
"homepage": "https://github.com/phaserjs/template-svelte#readme",
"keywords": [
"phaser",
"phaser3",
"svelte",
"vite"
],
"scripts": {
"dev": "node log.js dev & vite --config vite/config.dev.mjs",
"build": "node log.js build & vite build --config vite/config.prod.mjs",
"dev-nolog": "vite --config vite/config.dev.mjs",
"build-nolog": "vite build --config vite/config.prod.mjs",
"preview": "vite preview --outDir build"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.0",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.8",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"svelte": "^4.2.17",
"svelte-check": "^4.0.2",
"terser": "^5.31.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"type": "module",
"dependencies": {
"phaser": "^3.87.0"
}
}