Issue
@kayba/ace-framework is not published to the npm registry. Running npm install @kayba/ace-framework or bun add @kayba/ace-framework results in a 404 error:
error: GET https://registry.npmjs.org/@kayba%2face-framework - 404
error: @kayba/ace-framework@^0.7.0 failed to resolve
Expected Behavior
The package should be available on npm as @kayba/ace-framework@0.7.0 (matching the version in package.json).
Current Workaround
Installing directly from the GitHub repository works:
bun add @kayba/ace-framework@github:kayba-ai/ace-ts
However, this installs the raw TypeScript source without a built dist/ directory, since the files field in package.json only includes dist, README.md, LICENSE, and CHANGELOG.md.
Additional Notes
- The
package.json correctly specifies "main": "dist/index.js" and "types": "dist/index.d.ts", but no dist/ folder exists in the repo (it's likely .gitignored)
- A
prepublish or prepack script that runs tsc would help ensure the dist is built before publishing
- There are TypeScript compilation errors in
src/deduplication/detector.ts and src/observability/opik_integration.ts that prevent building from source
Environment
- Node.js: 22.x
- bun: 1.3.8
- OS: Linux
Issue
@kayba/ace-frameworkis not published to the npm registry. Runningnpm install @kayba/ace-frameworkorbun add @kayba/ace-frameworkresults in a 404 error:Expected Behavior
The package should be available on npm as
@kayba/ace-framework@0.7.0(matching the version inpackage.json).Current Workaround
Installing directly from the GitHub repository works:
However, this installs the raw TypeScript source without a built
dist/directory, since thefilesfield inpackage.jsononly includesdist,README.md,LICENSE, andCHANGELOG.md.Additional Notes
package.jsoncorrectly specifies"main": "dist/index.js"and"types": "dist/index.d.ts", but nodist/folder exists in the repo (it's likely.gitignored)prepublishorprepackscript that runstscwould help ensure the dist is built before publishingsrc/deduplication/detector.tsandsrc/observability/opik_integration.tsthat prevent building from sourceEnvironment