forked from playcanvas/playcanvas-editor-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "playcanvas-editor-ts-template",
"version": "1.0.0",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://playcanvas.com",
"description": "A simple TypeScript template for PlayCanvas that can also sync with your playcanvas.com project",
"keywords": [
"typescript",
"3D",
"2D",
"VR",
"WebGL",
"WebGL2",
"game",
"engine",
"HTML5",
"browser",
"typings"
],
"main": "build/main.bundle.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"push": "node node_modules/playcanvas-sync/pcsync.js pushAll --yes",
"build-push": "tsc && node node_modules/playcanvas-sync/pcsync.js pushAll --yes",
"watch-push": "tsc && tsc-watch --onSuccess \"node node_modules/playcanvas-sync/pcsync.js pushAll --yes\""
},
"license": "MIT",
"devDependencies": {
"playcanvas": "^1.51.4",
"playcanvas-sync": "git+https://github.com/playcanvas/playcanvas-sync.git",
"typescript": "^4.5.4"
},
"dependencies": {
"tsc-watch": "^4.6.0"
}
}