Files
esengine/packages/tools/cli/package.json
github-actions[bot] 1e31e9101b chore: release packages (#351)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-26 22:32:12 +08:00

52 lines
1006 B
JSON

{
"name": "@esengine/cli",
"version": "1.2.0",
"description": "CLI tool for adding ESEngine ECS framework to existing projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"esengine": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/cli.ts",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"esengine",
"ecs",
"cli",
"cocos",
"laya",
"game-framework"
],
"author": "yhh",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/prompts": "^2.4.9",
"rimraf": "^5.0.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}