-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
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
{
"name": "template-solidjs",
"description": "A Phaser 3 template using SolidJS.",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-solid.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-solid/issues"
},
"homepage": "https://github.com/phaserjs/template-solid#readme",
"keywords": [
"phaser",
"phaser3",
"solidjs",
"vite",
"typescript"
],
"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"
},
"dependencies": {
"phaser": "4.0.0",
"solid-js": "1.9.5"
},
"devDependencies": {
"terser": "5.39.0",
"typescript": "5.7.2",
"vite": "6.3.1",
"vite-plugin-solid": "2.11.6"
}
}