javascript-entity-component-system
Version:
A simple JavaScript entity-component-system for games
46 lines (45 loc) • 1.21 kB
JSON
{
"name": "javascript-entity-component-system",
"version": "2.0.1",
"description": "A simple JavaScript entity-component-system for games",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"keywords": [
"javascript",
"simple",
"entity",
"component",
"system",
"games",
"html5 games",
"web game",
"game dev"
],
"targets": {
"website": {
"source": "./src/index.html",
"distDir": "./",
"publicUrl": "https://stuhl.github.io/javascript-entity-component-system/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Stuhl/javascript-entity-component-system"
},
"scripts": {
"dev": "parcel ./src/website.html --no-cache",
"build-website": "parcel build",
"build-library": "parcel build src/index.ts && typedoc src/index.ts"
},
"author": "Stuhl",
"license": "MIT",
"browserslist": "> 0.5%, last 10 versions, not dead",
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"parcel": "^2.8.3",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}