57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
|
|
{
|
||
|
|
"name": "@esengine/tilemap",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Tilemap system for ECS Framework - supports Tiled editor import",
|
||
|
|
"main": "bin/index.js",
|
||
|
|
"types": "bin/index.d.ts",
|
||
|
|
"exports": {
|
||
|
|
".": {
|
||
|
|
"types": "./bin/index.d.ts",
|
||
|
|
"import": "./bin/index.js",
|
||
|
|
"development": {
|
||
|
|
"types": "./src/index.ts",
|
||
|
|
"import": "./src/index.ts"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"files": [
|
||
|
|
"bin/**/*"
|
||
|
|
],
|
||
|
|
"keywords": [
|
||
|
|
"ecs",
|
||
|
|
"tilemap",
|
||
|
|
"tiled",
|
||
|
|
"game-engine",
|
||
|
|
"2d",
|
||
|
|
"typescript"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"clean": "rimraf bin dist tsconfig.tsbuildinfo",
|
||
|
|
"build:ts": "tsc",
|
||
|
|
"prebuild": "npm run clean",
|
||
|
|
"build": "npm run build:ts",
|
||
|
|
"build:watch": "tsc --watch",
|
||
|
|
"rebuild": "npm run clean && npm run build"
|
||
|
|
},
|
||
|
|
"author": "yhh",
|
||
|
|
"license": "MIT",
|
||
|
|
"devDependencies": {
|
||
|
|
"rimraf": "^5.0.0",
|
||
|
|
"typescript": "^5.8.3"
|
||
|
|
},
|
||
|
|
"peerDependencies": {
|
||
|
|
"@esengine/ecs-framework": "^2.2.8",
|
||
|
|
"@esengine/asset-system": "workspace:*",
|
||
|
|
"@esengine/ecs-components": "workspace:*",
|
||
|
|
"@esengine/ecs-engine-bindgen": "workspace:*"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"tslib": "^2.8.1"
|
||
|
|
},
|
||
|
|
"repository": {
|
||
|
|
"type": "git",
|
||
|
|
"url": "https://github.com/esengine/ecs-framework.git",
|
||
|
|
"directory": "packages/tilemap"
|
||
|
|
}
|
||
|
|
}
|