UNPKG

@thi.ng/ecs

Version:

Entity Component System based around typed arrays & sparse sets

129 lines (128 loc) 2.95 kB
{ "name": "@thi.ng/ecs", "version": "0.7.194", "description": "Entity Component System based around typed arrays & sparse sets", "type": "module", "module": "./index.js", "typings": "./index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/thi-ng/umbrella.git" }, "homepage": "https://thi.ng/ecs", "funding": [ { "type": "github", "url": "https://github.com/sponsors/postspectacular" }, { "type": "patreon", "url": "https://patreon.com/thing_umbrella" }, { "type": "liberapay", "url": "https://liberapay.com/thi.ng" } ], "author": "Karsten Schmidt (https://thi.ng)", "license": "Apache-2.0", "scripts": { "build": "yarn build:esbuild && yarn build:decl", "build:decl": "tsc --declaration --emitDeclarationOnly", "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts", "clean": "bun ../../tools/src/clean-package.ts caches components groups", "doc": "typedoc --options ../../typedoc.json --out doc src/index.ts", "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts", "pub": "npm publish --access public", "test": "bun test", "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts" }, "dependencies": { "@thi.ng/api": "^8.12.10", "@thi.ng/associative": "^7.1.22", "@thi.ng/binary": "^3.5.0", "@thi.ng/checks": "^3.8.0", "@thi.ng/dcons": "^3.2.178", "@thi.ng/errors": "^2.5.50", "@thi.ng/idgen": "^2.2.84", "@thi.ng/logger": "^3.2.9", "@thi.ng/malloc": "^6.1.132", "@thi.ng/transducers": "^9.6.19" }, "devDependencies": { "@thi.ng/equiv": "^2.1.100", "esbuild": "^0.27.0", "typedoc": "^0.28.14", "typescript": "^5.9.3" }, "keywords": [ "acceleration", "animation", "aos", "array", "cache", "component", "data-oriented", "datastructure", "ecs", "entity", "memory", "memory-mapped", "typedarray", "typescript" ], "publishConfig": { "access": "public" }, "engines": { "node": ">=18" }, "files": [ "./*.js", "./*.d.ts", "caches", "components", "groups" ], "exports": { ".": { "default": "./index.js" }, "./api": { "default": "./api.js" }, "./caches/lru": { "default": "./caches/lru.js" }, "./caches/null": { "default": "./caches/null.js" }, "./caches/unbounded": { "default": "./caches/unbounded.js" }, "./components/acomponent": { "default": "./components/acomponent.js" }, "./components/mem-component": { "default": "./components/mem-component.js" }, "./components/object-component": { "default": "./components/object-component.js" }, "./ecs": { "default": "./ecs.js" }, "./groups/group": { "default": "./groups/group.js" }, "./logger": { "default": "./logger.js" } }, "thi.ng": { "status": "alpha", "year": 2019 }, "gitHead": "8625a1c6383737a8fdbe7a3f96ea3cbabc957fa6\n" }