forked from mirumodapon/phaser-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "template-vue-ts",
"version": "1.3.0",
"packageManager": "pnpm@10.11.1+sha512.e519b9f7639869dc8d5c3c5dfef73b3f091094b0a006d7317353c72b124e80e1afd429732e28705ad6bfa1ee879c1fce46c128ccebd3192101f43dd67c667912",
"description": "A Phaser 3 TypeScript project template that demonstrates Vue communication and uses Vite for bundling.",
"author": "Phaser Studio <support@phaser.io> (https://phaser.io/)",
"license": "MIT",
"homepage": "https://github.com/phaserjs/template-vue-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-vue-ts.git"
},
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-vue-ts/issues"
},
"keywords": [
"phaser",
"phaser3",
"typescript",
"vue",
"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",
"postbuild": "mkdir -p dist/room && cp dist/index.html dist/room/index.html",
"dev-nolog": "vite --config vite/config.dev.mjs",
"build-nolog": "vite build --config vite/config.prod.mjs",
"lint": "eslint ."
},
"dependencies": {
"@iconify/vue": "^5.0.0",
"marked": "^16.0.0",
"phaser": "^3.90.0",
"qrcode.vue": "^3.6.0",
"vue": "3.5.13",
"vue-qrcode-reader": "^5.7.3",
"vue-router": "4",
"vue-toastification": "2.0.0-rc.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.14.1",
"@types/node": "^20.11.20",
"@vitejs/plugin-vue": "^5.2.2",
"@vue/tsconfig": "^0.7.0",
"eslint-plugin-format": "^1.0.1",
"terser": "^5.31.0",
"typescript": "~5.7.2",
"vite": "^6.3.1",
"vue-tsc": "^2.2.8"
}
}