@jsondb-cloud/cli 1.0.13 → 1.0.14
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.
- package/README.md +5 -1
- package/dist/commands/keys.js +1 -1
- package/dist/commands/pull.js +1 -1
- package/dist/index.js +3 -3
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -5,8 +5,12 @@ The official CLI tool for [jsondb.cloud](https://jsondb.cloud) — a hosted JSON
|
|
|
5
5
|
[](https://www.npmjs.com/package/@jsondb-cloud/cli)
|
|
6
6
|
[](https://www.npmjs.com/package/@jsondb-cloud/cli)
|
|
7
7
|
[](https://github.com/JsonDBCloud/cli/actions)
|
|
8
|
-
[](https://www.typescriptlang.org/)
|
|
9
9
|
[](https://nodejs.org)
|
|
10
|
+
[](https://bundlephobia.com/package/@jsondb-cloud/cli)
|
|
11
|
+
[](https://github.com/JsonDBCloud/cli)
|
|
12
|
+
[](https://github.com/JsonDBCloud/cli)
|
|
13
|
+
[](https://opensource.org/licenses/MIT)
|
|
10
14
|
|
|
11
15
|
## Install
|
|
12
16
|
|
package/dist/commands/keys.js
CHANGED
|
@@ -28,7 +28,7 @@ async function listKeysCommand(client) {
|
|
|
28
28
|
(0, output_1.printTable)(headers, rows);
|
|
29
29
|
}
|
|
30
30
|
async function createKeyCommand(client, options) {
|
|
31
|
-
|
|
31
|
+
await client.rawGet("/api/keys"); // POST via the dashboard API
|
|
32
32
|
// Actually we need to post to create. Use a different approach
|
|
33
33
|
const body = {
|
|
34
34
|
name: options.name || "CLI-generated key",
|
package/dist/commands/pull.js
CHANGED
|
@@ -61,7 +61,7 @@ async function pullCommand(collection, client, options) {
|
|
|
61
61
|
if (options.out) {
|
|
62
62
|
fs.writeFileSync(options.out, content, "utf-8");
|
|
63
63
|
// Count documents
|
|
64
|
-
let count
|
|
64
|
+
let count;
|
|
65
65
|
if (format === "json") {
|
|
66
66
|
try {
|
|
67
67
|
count = JSON.parse(content).length;
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ program
|
|
|
19
19
|
.description("The jsondb.cloud CLI — manage your JSON database from the terminal")
|
|
20
20
|
.version("1.0.0")
|
|
21
21
|
.option("--api-key <key>", "Use a specific API key")
|
|
22
|
-
.option("--project <ns>",
|
|
22
|
+
.option("--project <ns>", 'Target project (default: "default")')
|
|
23
23
|
.option("--base-url <url>", "API base URL")
|
|
24
24
|
.option("--format <fmt>", "Output format: json, raw, ndjson, table");
|
|
25
25
|
function getClient() {
|
|
@@ -149,14 +149,14 @@ keys
|
|
|
149
149
|
.option("--name <name>", "Key name")
|
|
150
150
|
.option("--scope <scope>", "Scope: read-only, read-write", "read-write")
|
|
151
151
|
.option("--project <ns>", "Target project")
|
|
152
|
-
.action(async (
|
|
152
|
+
.action(async (_opts) => {
|
|
153
153
|
(0, output_1.error)("Key creation requires dashboard authentication. Use the web dashboard at https://jsondb.cloud/dashboard/api-keys");
|
|
154
154
|
process.exit(1);
|
|
155
155
|
});
|
|
156
156
|
keys
|
|
157
157
|
.command("revoke <id>")
|
|
158
158
|
.description("Revoke an API key")
|
|
159
|
-
.action(async (
|
|
159
|
+
.action(async (_id) => {
|
|
160
160
|
(0, output_1.error)("Key revocation requires dashboard authentication. Use the web dashboard at https://jsondb.cloud/dashboard/api-keys");
|
|
161
161
|
process.exit(1);
|
|
162
162
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsondb-cloud/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "CLI tool for jsondb.cloud — push, pull, manage your JSON database from the terminal",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -15,14 +15,24 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc",
|
|
17
17
|
"dev": "tsc --watch",
|
|
18
|
-
"typecheck": "tsc --noEmit"
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"lint": "eslint src/",
|
|
20
|
+
"lint:fix": "eslint src/ --fix",
|
|
21
|
+
"format": "prettier --write 'src/**/*.ts'",
|
|
22
|
+
"format:check": "prettier --check 'src/**/*.ts'",
|
|
23
|
+
"test": "vitest run"
|
|
19
24
|
},
|
|
20
25
|
"dependencies": {
|
|
21
26
|
"commander": "^13.0.0"
|
|
22
27
|
},
|
|
23
28
|
"devDependencies": {
|
|
29
|
+
"@eslint/js": "^10.0.1",
|
|
30
|
+
"@types/node": "^20.0.0",
|
|
31
|
+
"eslint": "^10.0.2",
|
|
32
|
+
"prettier": "^3.8.1",
|
|
24
33
|
"typescript": "^5.4.0",
|
|
25
|
-
"
|
|
34
|
+
"typescript-eslint": "^8.56.1",
|
|
35
|
+
"vitest": "^4.0.18"
|
|
26
36
|
},
|
|
27
37
|
"keywords": [
|
|
28
38
|
"jsondb",
|