keymaxxer 0.1.2 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +73 -54
  2. package/dist/cli.mjs +530 -484
  3. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keymaxxer",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "Secret manager for coding agents — run commands that use your API keys and tokens without ever exposing the secret to the model.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -15,7 +15,7 @@
15
15
  "build": "rm -rf dist && bun build packages/cli/src/index.ts --target node --external @tursodatabase/database --external @modelcontextprotocol/sdk --external zod --outfile dist/cli.mjs && node -e \"let f=require('fs');let c=f.readFileSync('dist/cli.mjs','utf8');f.writeFileSync('dist/cli.mjs',c.replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
16
16
  "prepublishOnly": "bun run build",
17
17
  "keymaxxer": "bun packages/cli/src/index.ts",
18
- "test": "bun packages/sdk/smoke.test.ts && bash test/integration.sh"
18
+ "test": "bun packages/sdk/smoke.test.ts && bun packages/cli/approval.test.ts && bun packages/cli/addsecret.test.ts && bash test/integration.sh"
19
19
  },
20
20
  "dependencies": {
21
21
  "@modelcontextprotocol/sdk": "^1.29.0",