forked from phaserjs/template-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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": "template-svelte",
"description": "A Phaser 3 project template that demonstrates Svelte communication and uses Vite for bundling.",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-svelte.git"
},
"author": "Phaser Studio <[email protected]> (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": "vite --config vite/config.dev.mjs",
"build": "vite build --config vite/config.prod.mjs",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "3.2.2",
"@sveltejs/adapter-static": "3.0.2",
"@sveltejs/kit": "2.5.18",
"@sveltejs/vite-plugin-svelte": "3.1.1",
"prettier": "3.3.3",
"prettier-plugin-svelte": "3.2.6",
"svelte": "4.2.18",
"svelte-check": "3.8.4",
"terser": "5.31.3",
"tslib": "2.6.3",
"typescript": "5.5.3",
"vite": "5.3.4"
},
"type": "module",
"dependencies": {
"phaser": "3.80.1"
}
}