@curdx/flow 7.1.1 → 7.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curdx/flow",
3
- "version": "7.1.1",
3
+ "version": "7.1.3",
4
4
  "description": "Interactive installer for Claude Code plugins and MCP servers",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.mjs",
@@ -15,11 +15,13 @@
15
15
  "build": "tsup",
16
16
  "build:hooks": "node scripts/build-hooks.mjs",
17
17
  "check:hooks-fresh": "node scripts/check-hooks-fresh.mjs",
18
+ "check:bundle": "node scripts/check-bundle-size.mjs",
18
19
  "dev": "tsup --watch",
19
20
  "test:hooks": "npm run build:hooks && vitest run tests/hooks --passWithNoTests",
21
+ "test:analyze": "vitest run tests/analyze",
20
22
  "start": "node ./dist/index.mjs",
21
23
  "typecheck": "tsc --noEmit",
22
- "verify": "npm run typecheck && npm run check-versions && npm run check:hooks-fresh && npm run test:hooks",
24
+ "verify": "npm run typecheck && npm run check-versions && npm run check:hooks-fresh && npm run build && npm run check:bundle && npm run test:hooks && npm run test:analyze",
23
25
  "check-versions": "node scripts/check-versions.mjs",
24
26
  "bump-version": "node scripts/bump-version.mjs",
25
27
  "prepublishOnly": "node scripts/check-versions.mjs && npm run typecheck && npm run check:hooks-fresh && npm run build"