Files
cli/package.json
Mauricio Siu ac02c614a6 refactor: migrate to biome and update CLI structure
- Removed ESLint configuration and ignore files in favor of Biome for linting.
- Introduced biome.json for configuration and updated package.json to reflect new dependencies.
- Added OpenAPI specification for Dokploy API and generated CLI commands from it.
- Refactored CLI entry point to use Commander instead of Oclif.
- Implemented new authentication command and removed deprecated commands.
- Updated TypeScript configuration and added build scripts for improved development workflow.
- Cleaned up unused files and commands to streamline the codebase.
2026-04-15 18:37:45 -06:00

55 lines
1.1 KiB
JSON

{
"name": "@dokploy/cli",
"description": "A CLI to manage dokploy server remotely",
"version": "0.3.0",
"author": "Mauricio Siu",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Dokploy/cli/blob/master/LICENSE"
}
],
"publishConfig": {
"access": "public"
},
"bin": {
"dokploy": "./dist/index.js"
},
"bugs": "https://github.com/Dokploy/cli/issues",
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"commander": "^13.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@types/node": "^18",
"tsx": "^4.21.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/dist"
],
"homepage": "https://github.com/Dokploy/cli",
"keywords": [
"dokploy",
"cli"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"repository": "Dokploy/cli",
"scripts": {
"build": "tsc -b",
"generate": "tsx scripts/generate.ts",
"prebuild": "pnpm run generate",
"dev": "tsx src/index.ts",
"lint": "biome check --write .",
"publish": "npm publish"
},
"types": "dist/index.d.ts"
}