2021-06-25 18:02:45 +01:00
|
|
|
{
|
|
|
|
"name": "draught",
|
2021-07-13 12:07:33 +01:00
|
|
|
"version": "1.0.0",
|
2021-06-25 18:02:45 +01:00
|
|
|
"description": "Rust wasm-based checkers game",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2021-06-30 00:43:39 +01:00
|
|
|
"build": "webpack --config webpack.prod.js --env production",
|
|
|
|
"devbuild": "webpack --config webpack.dev.js",
|
|
|
|
"start": "webpack serve --config webpack.dev.js --progress"
|
2021-06-25 18:02:45 +01:00
|
|
|
},
|
|
|
|
"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": {
|
2021-06-26 21:13:06 +01:00
|
|
|
"draught": "file:../pkg"
|
2021-06-25 18:02:45 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"copy-webpack-plugin": "^9.0.0",
|
2023-03-14 23:23:13 +00:00
|
|
|
"webpack": "^5.76.0",
|
2021-06-25 18:02:45 +01:00
|
|
|
"webpack-cli": "^4.7.2",
|
2022-04-02 12:39:48 +01:00
|
|
|
"webpack-dev-server": "^4.7.4",
|
2021-06-30 00:43:39 +01:00
|
|
|
"webpack-merge": "^5.8.0"
|
2021-06-25 18:02:45 +01:00
|
|
|
}
|
|
|
|
}
|