@friehub/blueprint 0.1.0 → 0.1.1

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.
@@ -18,7 +18,8 @@ jobs:
18
18
  - run: npm ci
19
19
  - run: npm run build
20
20
  - run: npm test
21
- - name: Publish
22
- run: npm publish --access public
21
+ - name: Pre-publish checks
22
+ run: bash scripts/check-publish.sh
23
+ - run: npm publish --access public
23
24
  env:
24
25
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/dist/index.js CHANGED
@@ -4,5 +4,7 @@ export { loadCatalogFromRoot } from "./core/load-catalog.js";
4
4
  export { loadAdapters, loadAdapter } from "./core/adapters/load.js";
5
5
  export { resolve as resolveDeps, detectCycles } from "./core/resolve.js";
6
6
  export { searchModules } from "./core/search.js";
7
- export { buildGraph } from "./core/graph.js";
8
7
  export { implicitCores } from "./core/catalog.js";
8
+ export { validateAdapter, validateAdapterSelection } from "./core/adapters/validate.js";
9
+ export { generateImplementPrompts } from "./core/implement.js";
10
+ export { verifyImplementation } from "./core/verify.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friehub/blueprint",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A domain contract catalogue for backend development. 108 interfaces, 83 adapters, AI-ready.",
5
5
  "keywords": ["contract", "domain", "backend", "ai", "code-generation", "adapter", "blueprint"],
6
6
  "license": "MIT",
@@ -21,6 +21,7 @@
21
21
  "check": "tsc -p tsconfig.json --noEmit",
22
22
  "test": "npm run build && node --test dist/core/*.test.js dist/core/adapters/*.test.js",
23
23
  "test:mcp": "node --test dist/mcp/*.test.js",
24
+ "check:publish": "bash scripts/check-publish.sh",
24
25
  "test:integration": "npm run build && bash scripts/integration-test.sh",
25
26
  "postinstall": "npm run build",
26
27
  "link": "npm run build && npm link"