draught/www/package.json
2022-04-02 12:39:48 +01:00

37 lines
885 B
JSON

{
"name": "draught",
"version": "1.0.0",
"description": "Rust wasm-based checkers game",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js --env production",
"devbuild": "webpack --config webpack.dev.js",
"start": "webpack serve --config webpack.dev.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sarsoo/draught.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "sarsoo",
"bugs": {
"url": "https://github.com/Sarsoo/draught/issues"
},
"homepage": "https://github.com/Sarsoo/draught#readme",
"dependencies": {
"draught": "file:../pkg"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}