guardskills 1.0.0 → 1.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 (4) hide show
  1. package/README.md +125 -69
  2. package/dist/cli.cjs +1368 -190
  3. package/dist/cli.js +1368 -190
  4. package/package.json +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "guardskills",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "Security wrapper around skills add",
5
5
  "keywords": [
6
6
  "security",
@@ -44,6 +44,7 @@
44
44
  "build": "tsup src/cli.ts --format esm,cjs --dts --clean",
45
45
  "dev": "tsx src/cli.ts",
46
46
  "prepare": "npm run build",
47
+ "test:guardskills": "vitest run tests",
47
48
  "ci": "npm run typecheck && npm test && npm run build",
48
49
  "audit:prod": "npm audit --omit=dev --audit-level=high",
49
50
  "typecheck": "tsc --noEmit",
@@ -56,6 +57,7 @@
56
57
  "@octokit/rest": "^21.1.0",
57
58
  "commander": "^12.1.0",
58
59
  "execa": "^9.5.2",
60
+ "jszip": "^3.10.1",
59
61
  "pino": "^9.5.0",
60
62
  "zod": "^3.24.1"
61
63
  },