2020-06-08 11:49:45 +08:00
|
|
|
{
|
2025-06-07 20:32:43 +08:00
|
|
|
"name": "@esengine/ecs-framework",
|
2025-06-07 21:45:11 +08:00
|
|
|
"version": "2.0.5",
|
2025-06-07 20:32:43 +08:00
|
|
|
"description": "用于Laya、Cocos等游戏引擎的高性能ECS框架",
|
|
|
|
|
"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-07 20:32:43 +08:00
|
|
|
"build": "tsc",
|
|
|
|
|
"build:watch": "tsc --watch",
|
2025-06-07 21:28:31 +08:00
|
|
|
"build:dev": "tsc -p tsconfig.dev.json",
|
|
|
|
|
"build:dev:watch": "tsc -p tsconfig.dev.json --watch",
|
2025-06-07 20:32:43 +08:00
|
|
|
"clean": "rimraf bin",
|
2025-06-07 21:28:31 +08:00
|
|
|
"clean:dev": "rimraf dev-bin",
|
|
|
|
|
"clean:all": "rimraf bin dev-bin",
|
2025-06-07 20:32:43 +08:00
|
|
|
"rebuild": "npm run clean && npm run build",
|
2025-06-07 21:28:31 +08:00
|
|
|
"rebuild:dev": "npm run clean:dev && npm run build:dev",
|
2025-06-07 20:32:43 +08:00
|
|
|
"test": "jest",
|
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"test:coverage": "jest --coverage",
|
2025-06-07 21:28:31 +08:00
|
|
|
"test:framework:benchmark": "npm run build:dev && node dev-bin/Testing/framework-benchmark-test.js",
|
2025-06-07 20:32:43 +08:00
|
|
|
"lint": "eslint src --ext .ts",
|
|
|
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
|
|
|
"prepublishOnly": "npm run rebuild",
|
|
|
|
|
"publish:patch": "npm run rebuild && npm version patch && npm publish",
|
|
|
|
|
"publish:minor": "npm run rebuild && npm version minor && npm publish",
|
|
|
|
|
"publish:major": "npm run rebuild && npm version major && npm publish",
|
|
|
|
|
"pack:check": "npm run rebuild && npm pack --dry-run",
|
|
|
|
|
"check": "node scripts/check-publish.js"
|
2020-06-08 11:49:45 +08:00
|
|
|
},
|
|
|
|
|
"author": "yhh",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2025-06-07 12:37:16 +08:00
|
|
|
"@babel/core": "^7.27.4",
|
|
|
|
|
"@babel/preset-env": "^7.27.2",
|
|
|
|
|
"browserify": "^17.0.1",
|
|
|
|
|
"gulp": "^5.0.1",
|
2020-06-08 11:49:45 +08:00
|
|
|
"gulp-babel": "^8.0.0",
|
|
|
|
|
"gulp-concat": "^2.6.1",
|
2020-06-16 16:35:17 +08:00
|
|
|
"gulp-inject-string": "^1.1.2",
|
2025-06-07 12:37:16 +08:00
|
|
|
"gulp-terser": "^2.1.0",
|
2020-06-08 11:49:45 +08:00
|
|
|
"gulp-string-replace": "^1.1.2",
|
2025-06-07 12:37:16 +08:00
|
|
|
"gulp-typescript": "^6.0.0-alpha.1",
|
2020-06-08 11:49:45 +08:00
|
|
|
"gulp-uglify": "^3.0.2",
|
2023-03-13 12:10:17 +08:00
|
|
|
"merge2": "^1.4.1",
|
2025-06-07 20:32:43 +08:00
|
|
|
"rimraf": "^5.0.0",
|
2025-06-07 12:37:16 +08:00
|
|
|
"tsify": "^5.0.4",
|
|
|
|
|
"typedoc": "^0.28.5",
|
|
|
|
|
"typescript": "^5.8.3",
|
|
|
|
|
"vinyl-source-stream": "^2.0.0",
|
2023-03-13 12:10:17 +08:00
|
|
|
"watchify": "^4.0.0"
|
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"
|
|
|
|
|
},
|
2020-06-16 16:35:17 +08:00
|
|
|
"dependencies": {}
|
2020-06-08 11:49:45 +08:00
|
|
|
}
|