vertecs
Version:
A typescript entity-component-system framework
77 lines • 2.47 kB
JSON
{
"name": "vertecs",
"version": "2.2.2",
"description": "A typescript entity-component-system framework",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js --watch",
"start:example-network-server": "ts-node --esm --experimental-specifier-resolution=node examples/network/hello-network/server/Main",
"start:example-network-client": "ts-node --esm --experimental-specifier-resolution=node examples/network/hello-network/client/Main",
"test": "mocha --experimental-specifier-resolution=node --loader=ts-node/esm test/**/*.spec.ts --exit --recursive",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts' 'examples/**/*.ts' --ignore-pattern dist/ --fix",
"build:examples": "rollup -c rollup.config.examples.js",
"dev:examples": "rollup -c rollup.config.examples.js --watch",
"prepare": "husky install"
},
"keywords": [
"ecs",
"typescript",
"entity-component-system",
"framework",
"game",
"game-engine",
"game-loop"
],
"dependencies": {
"oimo-esm": "^1.0.10",
"performance-now": "^2.1.0",
"three": "^0.155",
"ts-gl-matrix": "4.0.3",
"uuid": "^8.3.2",
"ws": "^8.9.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/chai": "^4.3.1",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.3",
"@types/three": "^0.155.0",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"mocha": "10.0.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rollup": "^3.5.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"rollup-plugin-ts": "^3.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"performance-now": "^2.1.0",
"three": "^0.155",
"ts-gl-matrix": "4.0.3",
"uuid": "^8.3.2",
"ws": "^8.9.0"
}
}