2020-10-11 21:46:15 +01:00
|
|
|
{
|
|
|
|
"name": "game-of-life-web",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "basic wasm-based game-of-life",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "webpack --config webpack.config.js",
|
2021-06-21 22:41:48 +01:00
|
|
|
"start": "webpack serve --config webpack.config.js --progress"
|
2020-10-11 21:46:15 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Sarsoo/game-of-life.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webassembly",
|
|
|
|
"wasm",
|
|
|
|
"rust",
|
|
|
|
"webpack"
|
|
|
|
],
|
|
|
|
"author": "sarsoo",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Sarsoo/game-of-life/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Sarsoo/game-of-life#readme",
|
|
|
|
"dependencies": {
|
|
|
|
"game-of-life": "file:../pkg"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-06-21 22:41:48 +01:00
|
|
|
"copy-webpack-plugin": "^9.0.0",
|
|
|
|
"webpack": "^5.40.0",
|
|
|
|
"webpack-cli": "^4.7.2",
|
|
|
|
"webpack-dev-server": "^3.11.2"
|
2020-10-11 21:46:15 +01:00
|
|
|
}
|
|
|
|
}
|