-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 818 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "dcl-project",
"version": "1.0.0",
"description": "My new Decentraland project",
"scripts": {
"start": "npm run compile-cpp && node start.js",
"build": "build-ecs",
"watch": "build-ecs --watch",
"deploy:now": "dcl export && now export",
"ecs:install": "npm install --save-dev decentraland-ecs@latest",
"ecs:install-next": "npm install --save-dev decentraland-ecs@next",
"all-install": "npm install && cd cpp-project && make install",
"compile-cpp": "cd cpp-project && make cmake && make compile && cp build/game.wasm ../bin/"
},
"devDependencies": {
"decentraland-ecs": "latest"
},
"dependencies": {
"@dcl/kernel": "https://sdk-team-cdn.decentraland.org/@dcl/kernel/branch/experimental/wasm-loader/dcl-kernel-1.0.0-1278829901.commit-b475a92.tgz"
}
}