Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
Expand Down
File renamed without changes.
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
"description": "A CLI to manage dokploy server remotely",
"version": "v0.2.8",
"author": "Mauricio Siu",
"licenses": [{
"type": "MIT",
"url": "https://github.com/Dokploy/cli/blob/master/LICENSE"
}],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Dokploy/cli/blob/master/LICENSE"
}
],
"publishConfig": {
"access": "public"
},
Expand All @@ -16,6 +18,7 @@
"bugs": "https://github.com/Dokploy/cli/issues",
"dependencies": {
"@oclif/core": "^3",
"@oclif/plugin-autocomplete": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"axios": "^1.7.2",
Expand Down Expand Up @@ -49,6 +52,7 @@
"files": [
"/bin",
"/dist",
"/scripts",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Dokploy/cli",
Expand All @@ -63,6 +67,7 @@
"dirname": "dokploy",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
Expand All @@ -71,6 +76,9 @@
"hello": {
"description": "Say hello to the world and others"
}
},
"hooks": {
"init": "./dist/hooks/init/hide-commands"
}
},
"repository": "Dokploy/cli",
Expand All @@ -82,7 +90,8 @@
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"publish" :"npm publish"
"publish": "npm publish",
"postinstall": "node scripts/postinstall.mjs"
},
"types": "dist/index.d.ts"
}
}
Loading