2025-11-21 10:03:18 +08:00
|
|
|
{
|
|
|
|
|
"name": "@esengine/ecs-engine-bindgen",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"description": "Bridge layer between ECS Framework and Rust Engine | ECS框架与Rust引擎之间的桥接层",
|
2025-12-01 22:28:51 +08:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"module": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"type": "module",
|
2025-11-21 10:03:18 +08:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
2025-11-21 10:03:18 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"build": "tsup",
|
|
|
|
|
"build:watch": "tsup --watch",
|
|
|
|
|
"clean": "rimraf dist"
|
2025-11-21 10:03:18 +08:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-12-08 21:23:37 +08:00
|
|
|
"url": "https://github.com/esengine/esengine.git",
|
2025-11-21 10:03:18 +08:00
|
|
|
"directory": "packages/ecs-engine-bindgen"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"game-engine",
|
|
|
|
|
"bridge",
|
|
|
|
|
"wasm",
|
|
|
|
|
"typescript"
|
|
|
|
|
],
|
|
|
|
|
"author": "ESEngine Team",
|
|
|
|
|
"license": "MIT",
|
2025-11-23 14:49:37 +08:00
|
|
|
"optionalDependencies": {
|
2025-11-21 10:03:18 +08:00
|
|
|
"es-engine": "file:../engine/pkg"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-12-08 21:23:37 +08:00
|
|
|
"@esengine/esengine": "workspace:*",
|
|
|
|
|
"@esengine/esengine-math": "workspace:*",
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/engine-core": "workspace:*",
|
|
|
|
|
"@esengine/sprite": "workspace:*",
|
|
|
|
|
"@esengine/camera": "workspace:*",
|
|
|
|
|
"@esengine/asset-system": "workspace:*",
|
2025-12-03 22:15:22 +08:00
|
|
|
"@esengine/material-system": "workspace:*",
|
2025-12-01 22:28:51 +08:00
|
|
|
"tsup": "^8.5.1",
|
2025-11-21 10:03:18 +08:00
|
|
|
"typescript": "^5.8.0",
|
|
|
|
|
"rimraf": "^5.0.0"
|
|
|
|
|
}
|
|
|
|
|
}
|