UNPKG

@byloth/micro-ecs

Version:

A simple & lightweight ECS (Entity Component System) library for JavaScript and TypeScript. 🕹

73 lines • 1.79 kB
{ "name": "@byloth/micro-ecs", "version": "1.0.24", "description": "A simple & lightweight ECS (Entity Component System) library for JavaScript and TypeScript. 🕹", "keywords": [ "ECS", "Entity Component System", "JavaScript", "TypeScript", "Library" ], "homepage": "https://github.com/Byloth/micro-ecs#readme", "repository": { "type": "git", "url": "git+https://github.com/Byloth/micro-ecs.git" }, "bugs": { "url": "https://github.com/Byloth/micro-ecs/issues" }, "author": { "name": "Matteo Bilotta", "email": "me@byloth.dev", "url": "https://www.byloth.dev/" }, "license": "Apache-2.0", "type": "module", "files": [ "dist", "src" ], "main": "dist/micro-ecs.umd.cjs", "module": "dist/micro-ecs.cjs", "unpkg": "dist/micro-ecs.global.js", "jsdelivr": "dist/micro-ecs.global.js", "exports": { ".": { "import": { "types": "./src/index.ts", "default": "./dist/micro-ecs.esm.js" }, "require": { "types": "./src/index.ts", "default": "./dist/micro-ecs.cjs" } } }, "types": "src/index.ts", "peerDependencies": { "@byloth/core": "^2.2.1" }, "devDependencies": { "@byloth/eslint-config-typescript": "^3.2.2", "@eslint/compat": "^1.4.1", "@types/node": "^22.19.0", "@vitest/coverage-v8": "^4.0.8", "eslint": "^9.39.1", "husky": "^9.1.7", "jsdom": "^27.1.0", "typescript": "^5.9.3", "vite": "^7.2.2", "vitest": "^4.0.8" }, "scripts": { "dev": "vite", "build": "vite build", "preview": "vite preview", "typecheck": "tsc", "lint": "eslint .", "test": "vitest run", "test:coverage": "vitest run --coverage", "ci": "pnpm install --frozen-lockfile" } }