tmagic-editor/packages/cli/package.json
2025-03-31 20:31:29 +08:00

50 lines
1010 B
JSON

{
"version": "1.5.12",
"name": "@tmagic/cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"build": "pnpm clean && tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo",
"check:type": "tsc --noEmit --project tsconfig.build.json"
},
"bin": {
"tmagic": "bin/tmagic.js"
},
"files": [
"bin",
"lib",
"src"
],
"engines": {
"node": ">=18"
},
"repository": {
"directory": "packages/cli",
"type": "git",
"url": "https://github.com/Tencent/tmagic-editor.git"
},
"dependencies": {
"cac": "^6.7.14",
"chokidar": "^3.6.0",
"esbuild": "^0.21.5",
"fs-extra": "^11.2.0",
"picocolors": "^1.1.1",
"recast": "^0.23.11",
"tslib": "^2.8.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.61"
},
"peerDependencies": {
"typescript": "*"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}