64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@esengine/procgen",
|
|
"version": "9.0.0",
|
|
"description": "Procedural generation tools for ECS Framework / ECS 框架的程序化生成工具",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"module.json"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"dependencies": {
|
|
"tslib": "^2.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/blueprint": "workspace:*",
|
|
"@esengine/build-config": "workspace:*",
|
|
"@types/node": "^20.19.17",
|
|
"rimraf": "^5.0.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@esengine/ecs-framework": "workspace:*",
|
|
"@esengine/blueprint": "workspace:*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/esengine/esengine.git",
|
|
"directory": "packages/framework/procgen"
|
|
},
|
|
"keywords": [
|
|
"ecs",
|
|
"procgen",
|
|
"procedural-generation",
|
|
"noise",
|
|
"perlin",
|
|
"simplex",
|
|
"random",
|
|
"game-engine",
|
|
"cocos",
|
|
"laya",
|
|
"esengine"
|
|
]
|
|
}
|