recker 1.0.11-alpha.e84cc95 → 1.0.12-alpha.04c18a7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recker",
3
- "version": "1.0.11-alpha.e84cc95",
3
+ "version": "1.0.12-alpha.04c18a7",
4
4
  "description": "AI & DevX focused HTTP client for Node.js 18+",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -105,7 +105,8 @@
105
105
  "./package.json": "./package.json"
106
106
  },
107
107
  "bin": {
108
- "rek": "./dist/cli/index.js"
108
+ "rek": "./dist/cli/index.js",
109
+ "recker": "./dist/cli/index.js"
109
110
  },
110
111
  "engines": {
111
112
  "node": ">=18"
@@ -168,7 +169,7 @@
168
169
  "test:coverage": "vitest run --coverage",
169
170
  "bench": "tsx benchmark/index.ts",
170
171
  "bench:all": "tsx benchmark/run-all.ts",
171
- "docs": "serve docs -p 3000 -o",
172
+ "docs": "npx docsify-cli serve docs -p 3000 -o",
172
173
  "lint": "echo \"No linting configured for this project.\" && exit 0",
173
174
  "cli": "tsx src/cli/index.ts"
174
175
  }