2020-06-08 11:49:45 +08:00
|
|
|
{
|
2025-06-07 20:32:43 +08:00
|
|
|
"name": "@esengine/ecs-framework",
|
2025-07-29 16:10:09 +08:00
|
|
|
"version": "2.1.27",
|
2025-06-12 09:47:25 +08:00
|
|
|
"description": "用于Laya、Cocos Creator等JavaScript游戏引擎的高性能ECS框架",
|
2025-06-07 20:32:43 +08:00
|
|
|
"main": "bin/index.js",
|
|
|
|
|
"types": "bin/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"bin/**/*",
|
|
|
|
|
"README.md",
|
|
|
|
|
"LICENSE"
|
|
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"entity-component-system",
|
|
|
|
|
"game-engine",
|
|
|
|
|
"typescript",
|
|
|
|
|
"laya",
|
|
|
|
|
"cocos",
|
|
|
|
|
"egret"
|
|
|
|
|
],
|
2020-06-08 11:49:45 +08:00
|
|
|
"scripts": {
|
2025-06-10 09:49:55 +08:00
|
|
|
"clean": "rimraf bin dist",
|
2025-06-08 21:50:50 +08:00
|
|
|
"build:ts": "tsc",
|
|
|
|
|
"prebuild": "npm run clean",
|
2025-06-10 09:49:55 +08:00
|
|
|
"build": "npm run build:ts",
|
2025-06-07 20:32:43 +08:00
|
|
|
"build:watch": "tsc --watch",
|
2025-06-10 09:49:55 +08:00
|
|
|
"rebuild": "npm run clean && npm run build",
|
2025-06-09 14:51:26 +08:00
|
|
|
"build:npm": "npm run build && node scripts/build-rollup.js",
|
2025-06-08 21:50:50 +08:00
|
|
|
"preversion": "npm run rebuild",
|
2025-06-09 10:42:19 +08:00
|
|
|
"publish:patch": "npm version patch && npm run build:npm && cd dist && npm publish",
|
|
|
|
|
"publish:minor": "npm version minor && npm run build:npm && cd dist && npm publish",
|
|
|
|
|
"publish:major": "npm version major && npm run build:npm && cd dist && npm publish",
|
2025-07-18 14:59:00 +08:00
|
|
|
"publish:npm": "npm run build:npm && cd dist && npm publish",
|
|
|
|
|
"test": "jest",
|
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
|
"test:ci": "jest --ci --coverage",
|
|
|
|
|
"test:clear": "jest --clearCache"
|
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-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-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",
|
|
|
|
|
"ws": "^8.18.2"
|
2025-06-09 10:42:19 +08:00
|
|
|
}
|
2025-06-09 15:55:26 +08:00
|
|
|
}
|