2025-12-01 22:28:51 +08:00
|
|
|
{
|
|
|
|
|
"name": "@esengine/engine-core",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Engine core components - Transform, etc.",
|
|
|
|
|
"esengine": {
|
|
|
|
|
"plugin": true,
|
|
|
|
|
"pluginExport": "EnginePlugin",
|
|
|
|
|
"category": "core",
|
|
|
|
|
"isEnginePlugin": true
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"module": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsup",
|
|
|
|
|
"build:watch": "tsup --watch",
|
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
|
"clean": "rimraf dist"
|
|
|
|
|
},
|
2025-12-05 18:15:50 +08:00
|
|
|
"dependencies": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/ecs-framework": "workspace:*",
|
2025-12-05 18:15:50 +08:00
|
|
|
"@esengine/platform-common": "workspace:*"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/build-config": "workspace:*",
|
|
|
|
|
"rimraf": "^5.0.5",
|
|
|
|
|
"tsup": "^8.0.0",
|
|
|
|
|
"typescript": "^5.3.3"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"engine",
|
|
|
|
|
"transform"
|
|
|
|
|
],
|
|
|
|
|
"author": "yhh",
|
|
|
|
|
"license": "MIT"
|
|
|
|
|
}
|