* refactor(engine): 重构2D渲染管线坐标系统 * feat(engine): 完善2D渲染管线和编辑器视口功能 * feat(editor): 实现Viewport变换工具系统 * feat(editor): 优化Inspector渲染性能并修复Gizmo变换工具显示 * feat(editor): 实现Run on Device移动预览功能 * feat(editor): 添加组件属性控制和依赖关系系统 * feat(editor): 实现动画预览功能和优化SpriteAnimator编辑器 * feat(editor): 修复SpriteAnimator动画预览功能并迁移CI到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(editor): 修复SpriteAnimator动画预览并迁移到pnpm * feat(ci): 迁移项目到pnpm并修复CI构建问题 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 迁移CI工作流到pnpm并添加WASM构建支持 * chore: 移除 network 相关包 * chore: 移除 network 相关包
119 lines
4.4 KiB
JSON
119 lines
4.4 KiB
JSON
{
|
|
"name": "@esengine/ecs-framework-monorepo",
|
|
"version": "2.1.29",
|
|
"description": "ECS Framework Monorepo - 高性能ECS框架及其网络插件",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"keywords": [
|
|
"ecs",
|
|
"entity-component-system",
|
|
"game-engine",
|
|
"typescript",
|
|
"laya",
|
|
"cocos",
|
|
"egret"
|
|
],
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap",
|
|
"clean": "lerna run clean",
|
|
"build": "npm run build:core && npm run build:math",
|
|
"build:core": "cd packages/core && npm run build",
|
|
"build:math": "cd packages/math && npm run build",
|
|
"build:npm": "npm run build:npm:core && npm run build:npm:math",
|
|
"build:npm:core": "cd packages/core && npm run build:npm",
|
|
"build:npm:math": "cd packages/math && 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 && npm run publish:all:dist",
|
|
"publish:all:dist": "npm run publish:core && npm run publish:math",
|
|
"publish:core": "cd packages/core && npm run publish:npm",
|
|
"publish:core:patch": "cd packages/core && npm run publish:patch",
|
|
"publish:math": "cd packages/math && npm run publish:npm",
|
|
"publish:math:patch": "cd packages/math && npm run publish:patch",
|
|
"publish": "lerna publish",
|
|
"version": "lerna version",
|
|
"release": "semantic-release",
|
|
"release:core": "cd packages/core && semantic-release",
|
|
"contributors:add": "all-contributors add",
|
|
"contributors:generate": "all-contributors generate",
|
|
"contributors:check": "all-contributors check",
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "npm run docs:api && vitepress build docs",
|
|
"docs:preview": "vitepress preview docs",
|
|
"docs:api": "typedoc",
|
|
"docs:api:watch": "typedoc --watch",
|
|
"update:worker-demo": "npm run build:core && cd examples/worker-system-demo && npm run build && cd ../.. && npm run copy:worker-demo",
|
|
"copy:worker-demo": "node scripts/update-worker-demo.js",
|
|
"format": "prettier --write \"packages/**/src/**/*.{ts,tsx,js,jsx}\"",
|
|
"format:check": "prettier --check \"packages/**/src/**/*.{ts,tsx,js,jsx}\"",
|
|
"type-check": "lerna run type-check",
|
|
"lint": "eslint \"packages/**/src/**/*.{ts,tsx,js,jsx}\"",
|
|
"lint:fix": "eslint \"packages/**/src/**/*.{ts,tsx,js,jsx}\" --fix",
|
|
"build:wasm": "cd packages/engine && wasm-pack build --dev --out-dir pkg",
|
|
"build:wasm:release": "cd packages/engine && wasm-pack build --release --out-dir pkg"
|
|
},
|
|
"author": "yhh",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^18.6.0",
|
|
"@commitlint/config-conventional": "^18.6.0",
|
|
"@eslint/js": "^9.39.1",
|
|
"@iconify/json": "^2.2.388",
|
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^9.2.6",
|
|
"@semantic-release/npm": "^11.0.2",
|
|
"@semantic-release/release-notes-generator": "^12.1.0",
|
|
"@size-limit/preset-small-lib": "^11.0.2",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.19.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.46.1",
|
|
"@typescript-eslint/parser": "^8.46.1",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"eslint": "^9.37.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"lerna": "^8.1.8",
|
|
"prettier": "^3.6.2",
|
|
"rimraf": "^5.0.0",
|
|
"rollup": "^4.42.0",
|
|
"rollup-plugin-dts": "^6.2.1",
|
|
"semantic-release": "^23.0.0",
|
|
"semantic-release-monorepo": "^8.0.2",
|
|
"semver": "^7.6.3",
|
|
"size-limit": "^11.0.2",
|
|
"ts-jest": "^29.4.0",
|
|
"typedoc": "^0.28.13",
|
|
"typedoc-plugin-markdown": "^4.9.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.47.0",
|
|
"unplugin-icons": "^22.3.0",
|
|
"vitepress": "^1.6.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/esengine/ecs-framework.git"
|
|
},
|
|
"dependencies": {
|
|
"@types/multer": "^1.4.13",
|
|
"@types/ws": "^8.18.1",
|
|
"coi-serviceworker": "^0.1.7",
|
|
"minigame-api-typings": "^3.8.12",
|
|
"protobufjs": "^7.5.3",
|
|
"reflect-metadata": "^0.2.2",
|
|
"ws": "^8.18.2"
|
|
}
|
|
}
|