2020-06-08 11:49:45 +08:00
|
|
|
{
|
2025-08-07 13:29:12 +08:00
|
|
|
"name": "@esengine/ecs-framework-monorepo",
|
2025-08-06 09:56:55 +08:00
|
|
|
"version": "2.1.29",
|
2025-08-07 13:29:12 +08:00
|
|
|
"description": "ECS Framework Monorepo - 高性能ECS框架及其网络插件",
|
|
|
|
|
"private": true,
|
|
|
|
|
"workspaces": [
|
|
|
|
|
"packages/*"
|
2025-06-07 20:32:43 +08:00
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"entity-component-system",
|
|
|
|
|
"game-engine",
|
|
|
|
|
"typescript",
|
|
|
|
|
"laya",
|
|
|
|
|
"cocos",
|
|
|
|
|
"egret"
|
|
|
|
|
],
|
2020-06-08 11:49:45 +08:00
|
|
|
"scripts": {
|
2025-08-07 13:29:12 +08:00
|
|
|
"bootstrap": "lerna bootstrap",
|
|
|
|
|
"clean": "lerna run clean",
|
|
|
|
|
"build": "npm run build:core && npm run build:network",
|
|
|
|
|
"build:core": "cd packages/core && npm run build",
|
|
|
|
|
"build:network": "cd packages/network && npm run build",
|
|
|
|
|
"build:npm": "npm run build:npm:core && npm run build:npm:network",
|
|
|
|
|
"build:npm:core": "cd packages/core && npm run build:npm",
|
|
|
|
|
"build:npm:network": "cd packages/network && npm run build:npm",
|
|
|
|
|
"test": "lerna run test",
|
|
|
|
|
"test:coverage": "lerna run test:coverage",
|
|
|
|
|
"test:ci": "lerna run test:ci",
|
|
|
|
|
"prepare:publish": "npm run build:npm && node scripts/pre-publish-check.cjs",
|
|
|
|
|
"sync:versions": "node scripts/sync-versions.cjs",
|
|
|
|
|
"publish:all": "npm run prepare:publish && lerna publish",
|
|
|
|
|
"publish": "lerna publish",
|
|
|
|
|
"version": "lerna version"
|
2020-06-08 11:49:45 +08:00
|
|
|
},
|
|
|
|
|
"author": "yhh",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2025-06-09 14:51:26 +08:00
|
|
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
|
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2025-07-18 14:59:00 +08:00
|
|
|
"@types/jest": "^29.5.14",
|
2025-06-08 21:50:50 +08:00
|
|
|
"@types/node": "^20.19.0",
|
2025-07-18 14:59:00 +08:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2025-08-07 13:29:12 +08:00
|
|
|
"lerna": "^8.1.8",
|
2025-06-07 20:32:43 +08:00
|
|
|
"rimraf": "^5.0.0",
|
2025-06-09 14:51:26 +08:00
|
|
|
"rollup": "^4.42.0",
|
|
|
|
|
"rollup-plugin-dts": "^6.2.1",
|
2025-08-07 13:29:12 +08:00
|
|
|
"semver": "^7.6.3",
|
2025-07-18 14:59:00 +08:00
|
|
|
"ts-jest": "^29.4.0",
|
2025-06-08 21:50:50 +08:00
|
|
|
"typescript": "^5.8.3"
|
2020-06-08 11:49:45 +08:00
|
|
|
},
|
2020-06-08 21:53:09 +08:00
|
|
|
"publishConfig": {
|
2025-06-07 20:32:43 +08:00
|
|
|
"access": "public"
|
2020-06-16 13:13:55 +08:00
|
|
|
},
|
2023-03-13 12:10:17 +08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/esengine/ecs-framework.git"
|
2025-06-17 00:32:16 +08:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-06-19 18:32:32 +08:00
|
|
|
"@types/multer": "^1.4.13",
|
2025-06-17 00:32:16 +08:00
|
|
|
"@types/ws": "^8.18.1",
|
2025-08-06 17:04:02 +08:00
|
|
|
"protobufjs": "^7.5.3",
|
|
|
|
|
"reflect-metadata": "^0.2.2",
|
2025-06-17 00:32:16 +08:00
|
|
|
"ws": "^8.18.2"
|
2025-06-09 10:42:19 +08:00
|
|
|
}
|
2025-06-09 15:55:26 +08:00
|
|
|
}
|