enso/gui/examples/package.json
2020-01-03 14:29:57 +01:00

43 lines
1.1 KiB
JSON

{
"name": "example-scenes",
"version": "0.1.0",
"description": "Example Scenes",
"main": "index.js",
"bin": {
"create-wasm-app": ".bin/create-wasm-app.js"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"start": "webpack-dev-server --config webpack.prod.js",
"start-dev": "webpack-dev-server --config webpack.dev.js",
"prod-server": "npx http-server -p 3000 --proxy http://localhost:3000\\? dist"
},
"repository": {
"type": "git",
"url": "git@github.com:luna/basegl.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "Enso Team (contact@luna-lang.org)",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/luna/basegl/issues"
},
"homepage": "https://github.com/luna/basegl",
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"basegl": "file:../target/web"
}
}