@seekrit/cli 0.6.0 → 0.7.0
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/dist/index.js +3 -2
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -385,7 +385,7 @@ async function unwrapDek(wrapped, privateKey) {
|
|
|
385
385
|
}
|
|
386
386
|
//#endregion
|
|
387
387
|
//#region package.json
|
|
388
|
-
var version = "0.
|
|
388
|
+
var version = "0.7.0";
|
|
389
389
|
const PROJECT_FILE = "seekrit.json";
|
|
390
390
|
function globalConfigPath() {
|
|
391
391
|
return join(process.env.XDG_CONFIG_HOME ?? join(homedir(), ".config"), "seekrit", "config.json");
|
|
@@ -1601,7 +1601,8 @@ program.command("audit").description("show the org audit trail").option("--org <
|
|
|
1601
1601
|
const { entries } = await ctx.client.listAudit(orgRef.id, { limit: Number.parseInt(options.limit, 10) || 50 });
|
|
1602
1602
|
for (const entry of entries) console.log(`${entry.createdAt}\t${entry.action}\t${entry.actorType}:${entry.actorId}\t${entry.resourceType}${entry.resourceId ? `:${entry.resourceId}` : ""}`);
|
|
1603
1603
|
});
|
|
1604
|
-
|
|
1604
|
+
const argv = process.argv.map((arg) => arg === "-v" ? "--version" : arg);
|
|
1605
|
+
program.parseAsync(argv).catch((err) => {
|
|
1605
1606
|
fail(err instanceof Error ? err.message : String(err));
|
|
1606
1607
|
});
|
|
1607
1608
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seekrit/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "End-to-end encrypted secrets manager CLI — inject decrypted secrets into any command.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20"
|
|
17
17
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsdown",
|
|
20
|
-
"dev": "tsdown --watch",
|
|
21
|
-
"typecheck": "tsc --noEmit"
|
|
22
|
-
},
|
|
23
18
|
"dependencies": {
|
|
24
19
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
25
20
|
"commander": "^15.0.0",
|
|
26
21
|
"zod": "^4.4.3"
|
|
27
22
|
},
|
|
28
23
|
"devDependencies": {
|
|
29
|
-
"@seekrit/api-client": "workspace:*",
|
|
30
|
-
"@seekrit/core": "workspace:*",
|
|
31
|
-
"@seekrit/crypto": "workspace:*",
|
|
32
24
|
"@types/node": "^26.1.0",
|
|
33
|
-
"tsdown": "^0.22.3"
|
|
25
|
+
"tsdown": "^0.22.3",
|
|
26
|
+
"@seekrit/api-client": "0.0.1",
|
|
27
|
+
"@seekrit/core": "0.0.1",
|
|
28
|
+
"@seekrit/crypto": "0.0.1"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsdown",
|
|
32
|
+
"dev": "tsdown --watch",
|
|
33
|
+
"typecheck": "tsc --noEmit"
|
|
34
34
|
}
|
|
35
|
-
}
|
|
35
|
+
}
|