gameforge
Version:
Lightweight HTML5 boilerplate for quick 2D game prototyping
61 lines (60 loc) • 1.56 kB
JSON
{
"name": "gameforge",
"version": "0.1.27",
"description": "Lightweight HTML5 boilerplate for quick 2D game prototyping",
"keywords": [
"lightweight",
"boilerplate",
"html5",
"2d-game",
"game-prototyping"
],
"license": "MIT",
"author": "Róbert Darida",
"homepage": "https://rdarida.github.io/gameforge/",
"repository": {
"type": "git",
"url": "git+https://github.com/rdarida/gameforge.git"
},
"bugs": {
"url": "https://github.com/rdarida/gameforge/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"lint": "tsc",
"prettier": "prettier . --check",
"pretest": "rimraf ./coverage",
"test": "jest",
"prebuild": "rimraf ./dist",
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"prepublishOnly": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD",
"predocs": "rimraf ./docs",
"docs": "typedoc"
},
"dependencies": {
"@pixi/sound": ">=5.2.3 <6.0.0",
"@types/webfontloader": "^1.6.38",
"pixi.js": ">=7.4.3 <8.0.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"jest-config": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.1",
"tsup": "^8.3.5",
"typedoc": "~0.28.1",
"typescript": "~5.8.3"
}
}