@bosonprotocol/agentic-commerce 1.2.5 → 1.2.6-alpha.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.
Files changed (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bosonprotocol/agentic-commerce",
3
- "version": "1.2.5",
3
+ "version": "1.2.6-alpha.1",
4
4
  "description": "Agentic commerce tools for Boson and Fermion protocols",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -49,8 +49,11 @@
49
49
  "test:ui": "vitest --ui",
50
50
  "test:coverage": "vitest run --coverage",
51
51
  "ci": "echo 'Type checking:' && pnpm typecheck && echo 'Linting:' && pnpm lint:ci && echo 'Tests:' && pnpm test && echo 'Build:' && pnpm build",
52
- "update-badges": "node scripts/update-badges.ts",
53
- "setup-mcp-server": "node scripts/setupMcpServer.ts",
52
+ "update-badges": "pnpm exec tsx scripts/update-badges.ts",
53
+ "setup-mcp-server": "pnpm exec tsx scripts/setupMcpServer.ts",
54
+ "build:public-docs": "pnpm exec tsx scripts/build-public-docs.ts",
55
+ "prepack": "pnpm build:public-docs && node -e \"require('fs').copyFileSync('README.md','README.source.md.bak'); require('fs').copyFileSync('public-docs/README.npm.md','README.md')\"",
56
+ "postpack": "node -e \"require('fs').copyFileSync('README.source.md.bak','README.md'); require('fs').unlinkSync('README.source.md.bak')\"",
54
57
  "e2e:boson:test": "jest -c ./e2e/boson/jest.config.js",
55
58
  "e2e:boson:test:only": "jest -c ./e2e/boson/jest.config.js --runInBand",
56
59
  "e2e:boson:services": "run-script-os",