Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ npm run check
npm test
npm run typecheck
npm run build
npm run release:check
bash scripts/validate.sh
```

Expand Down
15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
{
"name": "bargekit",
"name": "@bargekit/core",
"version": "0.1.0",
"description": "Local-first turn-taking primitives for interruptible voice agents.",
"type": "module",
"main": "./src/index.js",
"bin": {
"bargekit": "./src/cli.js"
},
"exports": {
".": "./src/index.js"
".": "./src/index.js",
"./web": "./src/web.js",
"./fixtures": "./src/fixtures.js",
"./integrations": "./src/integrations.js",
"./tuning": "./src/tuning.js"
},
"files": [
"src",
"demo",
"examples",
"README.md",
"LICENSE",
"LICENSE"
],
"scripts": {
Expand All @@ -20,7 +27,7 @@
"typecheck": "tsc --project tsconfig.json",
"build": "node scripts/build.mjs",
"package:smoke": "npm pack --dry-run",
"release:check": "npm test && npm run package:smoke",
"release:check": "npm run check && npm test && npm run typecheck && npm run build && npm run smoke && npm run package:smoke",
"smoke": "node test/fixtures.test.js"
},
"keywords": [
Expand Down