@curbl/ecs
Version:
Small Entity Component System
70 lines (69 loc) • 1.85 kB
JSON
{
"name": "@curbl/ecs",
"version": "3.2.3",
"description": "Small Entity Component System",
"source": "./src/index.ts",
"main": "./lib/ecs.js",
"module": "./lib/ecs.module.js",
"unpkg": "./lib/ecs.umd.js",
"types": "./lib/index.d.ts",
"typings": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/ecs.modern.js",
"require": "./lib/ecs.js"
}
},
"scripts": {
"build": "microbundle --raw",
"test": "karma start",
"benchmark": "npm run build && npm run benchmark --prefix benchmark",
"tsc:check": "tsc --noEmit",
"eslint": "eslint ./src/**/*.ts ./test/**/*.ts ./example/src/**/*.ts",
"eslint:fix": "eslint ./src/**/*.ts ./test/**/*.ts ./example/src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xan0C/curbl-ecs.git"
},
"keywords": [
"ts",
"typescript",
"ecs",
"entity",
"component",
"system",
"decorators"
],
"author": "Sören Vullriede",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.2",
"microbundle": "^0.14.1",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"puppeteer": "^10.4.0",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/Xan0C/curbl-ecs/issues"
},
"homepage": "https://github.com/Xan0C/curbl-ecs#readme",
"dependencies": {
"@types/uuid": "^8.3.3",
"uuid": "^8.3.2"
}
}