@diegoaltoworks/talker 0.1.0 → 0.5.0
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.
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegoaltoworks/talker",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Telephony plugin for Chatter — adds voice call and SMS support via Twilio",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"build": "bun run build:clean && bun run build:types && bun run build:esm && bun run build:cjs",
|
|
24
24
|
"build:clean": "rm -rf dist",
|
|
25
25
|
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
|
26
|
-
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mjs --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@libsql/client --platform=node --target=
|
|
27
|
-
"build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=dist/index.js --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@libsql/client --platform=node --target=
|
|
26
|
+
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mjs --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@libsql/client --platform=node --target=node24",
|
|
27
|
+
"build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=dist/index.js --external:hono --external:openai --external:@diegoaltoworks/chatter --external:@libsql/client --platform=node --target=node24",
|
|
28
28
|
"test": "bun test",
|
|
29
29
|
"test:unit": "bun test src/**/*.test.ts",
|
|
30
30
|
"test:integration": "bun test test/integration/**/*.test.ts",
|
|
@@ -64,11 +64,11 @@
|
|
|
64
64
|
},
|
|
65
65
|
"homepage": "https://github.com/diegoaltoworks/talker#readme",
|
|
66
66
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
67
|
+
"node": ">=24.0.0"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@diegoaltoworks/chatter": "^0.1.0",
|
|
71
|
-
"@libsql/client": "
|
|
71
|
+
"@libsql/client": ">=0.6.0",
|
|
72
72
|
"hono": "^4.0.0 || ^5.0.0",
|
|
73
73
|
"openai": "^4.0.0"
|
|
74
74
|
},
|