mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-06-01 14:39:33 +00:00
fix(rudag): correct package.json exports to match actual build output
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b0d31df2b6
commit
43e8ddb44b
1 changed files with 5 additions and 11 deletions
|
|
@ -3,7 +3,7 @@
|
|||
"version": "0.1.0",
|
||||
"description": "Self-learning DAG query optimization with WASM acceleration and IndexedDB persistence for browsers",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"module": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"bin": {
|
||||
"rudag": "./bin/cli.js"
|
||||
|
|
@ -11,24 +11,18 @@
|
|||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"browser": {
|
||||
"import": "./dist/browser.mjs",
|
||||
"require": "./dist/browser.js"
|
||||
},
|
||||
"node": {
|
||||
"import": "./dist/node.mjs",
|
||||
"require": "./dist/node.js"
|
||||
},
|
||||
"import": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./browser": {
|
||||
"types": "./dist/browser.d.ts",
|
||||
"import": "./dist/browser.mjs",
|
||||
"import": "./dist/browser.js",
|
||||
"require": "./dist/browser.js"
|
||||
},
|
||||
"./node": {
|
||||
"types": "./dist/node.d.ts",
|
||||
"import": "./dist/node.mjs",
|
||||
"import": "./dist/node.js",
|
||||
"require": "./dist/node.js"
|
||||
},
|
||||
"./wasm": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue