2025-11-23 14:49:37 +08:00
|
|
|
{
|
|
|
|
|
"name": "@esengine/asset-system",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Asset management system for ES Engine",
|
2025-12-01 22:28:51 +08:00
|
|
|
"type": "module",
|
2025-11-23 14:49:37 +08:00
|
|
|
"main": "dist/index.js",
|
2025-12-01 22:28:51 +08:00
|
|
|
"module": "dist/index.js",
|
2025-11-23 14:49:37 +08:00
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js"
|
2025-11-23 14:49:37 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"build": "tsup",
|
|
|
|
|
"build:watch": "tsup --watch",
|
2025-11-23 14:49:37 +08:00
|
|
|
"clean": "rimraf dist",
|
2025-12-01 22:28:51 +08:00
|
|
|
"type-check": "tsc --noEmit"
|
2025-11-23 14:49:37 +08:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"ecs",
|
|
|
|
|
"asset",
|
|
|
|
|
"resource",
|
|
|
|
|
"bundle"
|
|
|
|
|
],
|
|
|
|
|
"author": "yhh",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2025-12-01 22:28:51 +08:00
|
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
|
|
|
"@esengine/build-config": "workspace:*",
|
2025-11-23 14:49:37 +08:00
|
|
|
"rimraf": "^5.0.0",
|
2025-12-01 22:28:51 +08:00
|
|
|
"tsup": "^8.0.0",
|
2025-11-23 14:49:37 +08:00
|
|
|
"typescript": "^5.8.3"
|
|
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/esengine/ecs-framework.git",
|
|
|
|
|
"directory": "packages/asset-system"
|
|
|
|
|
}
|
|
|
|
|
}
|