Files
esengine/source/package.json
2025-06-07 21:28:31 +08:00

75 lines
2.2 KiB
JSON

{
"name": "@esengine/ecs-framework",
"version": "2.0.4",
"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"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"build:dev": "tsc -p tsconfig.dev.json",
"build:dev:watch": "tsc -p tsconfig.dev.json --watch",
"clean": "rimraf bin",
"clean:dev": "rimraf dev-bin",
"clean:all": "rimraf bin dev-bin",
"rebuild": "npm run clean && npm run build",
"rebuild:dev": "npm run clean:dev && npm run build:dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:framework:benchmark": "npm run build:dev && node dev-bin/Testing/framework-benchmark-test.js",
"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"
},
"author": "yhh",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"browserify": "^17.0.1",
"gulp": "^5.0.1",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-inject-string": "^1.1.2",
"gulp-terser": "^2.1.0",
"gulp-string-replace": "^1.1.2",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"merge2": "^1.4.1",
"rimraf": "^5.0.0",
"tsify": "^5.0.4",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/esengine/ecs-framework.git"
},
"dependencies": {}
}