2025-11-25 22:23:19 +08:00
|
|
|
{
|
2025-12-01 22:28:51 +08:00
|
|
|
"name": "@esengine/tilemap",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Tilemap system for ECS Framework - supports Tiled editor import",
|
|
|
|
|
"esengine": {
|
|
|
|
|
"plugin": true,
|
|
|
|
|
"pluginExport": "TilemapPlugin",
|
|
|
|
|
"category": "tilemap"
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"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"
|
|
|
|
|
}
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"tilemap",
|
|
|
|
|
"tiled",
|
|
|
|
|
"game-engine",
|
|
|
|
|
"2d",
|
|
|
|
|
"typescript"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
|
|
|
"build": "tsup",
|
|
|
|
|
"build:watch": "tsup --watch",
|
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
|
"rebuild": "npm run clean && npm run build"
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"author": "yhh",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@esengine/ecs-framework": "workspace:*",
|
2025-12-03 22:15:22 +08:00
|
|
|
"@esengine/ecs-framework-math": "workspace:*",
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/asset-system": "workspace:*",
|
|
|
|
|
"@esengine/engine-core": "workspace:*",
|
|
|
|
|
"@esengine/ecs-engine-bindgen": "workspace:*",
|
|
|
|
|
"@esengine/build-config": "workspace:*",
|
|
|
|
|
"rimraf": "^5.0.0",
|
|
|
|
|
"tsup": "^8.0.0",
|
|
|
|
|
"typescript": "^5.8.3"
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"dependencies": {
|
|
|
|
|
"tslib": "^2.8.1"
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
2025-12-01 22:28:51 +08:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/esengine/ecs-framework.git",
|
|
|
|
|
"directory": "packages/tilemap"
|
2025-11-27 20:42:46 +08:00
|
|
|
}
|
2025-11-25 22:23:19 +08:00
|
|
|
}
|