mc_arkanoid
Version:
A pure HTML / custom element Arkanoid clone using micro components
38 lines (37 loc) • 1.02 kB
JSON
{
"name": "mc_arkanoid",
"version": "0.0.15",
"description": "A pure HTML / custom element Arkanoid clone using micro components",
"keywords": [
"micro",
"components",
"arkanoid"
],
"homepage": "https://gitlab.com/twoBirds/mc_arkanoid#readme",
"bugs": {
"url": "https://gitlab.com/twoBirds/mc_arkanoid/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/twoBirds/mc_arkanoid.git"
},
"license": "ISC",
"author": "Frank Thuerigen",
"type": "module",
"main": "mc_arkanoid.js",
"scripts": {
"typedoc": "typedoc",
"webpack": "webpack",
"clean": "rm -rf build/*; rm -rf dist/*; rm -rf public/*;",
"copyToPublic": "cp -R assets/* public; cp -R dist/* public",
"build": "npm run clean; tsc; typedoc; npm run webpack; npm run copyToPublic;"
},
"devDependencies": {
"@twobirds/microcomponents": "^0.1.3",
"ts-loader": "^9.5.2",
"typedoc": "^0.26.11",
"typescript": "^5.5.4",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}