-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "create-playcanvas",
"version": "0.2.5",
"author": "PlayCanvas <support@playcanvas.com>",
"homepage": "https://github.com/playcanvas/create-playcanvas#readme",
"description": "Scaffold a PlayCanvas project",
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/create-playcanvas.git"
},
"keywords": [
"playcanvas",
"create",
"scaffold",
"template",
"vite",
"react",
"typescript",
"webgl",
"webgpu",
"game",
"3d"
],
"type": "module",
"bin": {
"create-playcanvas": "index.js"
},
"files": [
"index.js",
"templates",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@clack/prompts": "^0.11.0",
"@types/node": "^25.0.10",
"cross-spawn": "^7.0.6",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"unbuild": "^3.6.1"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
}
}