@raindrop-ai/ai-sdk 0.0.16 → 0.0.18
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/README.md +6 -6
- package/dist/{chunk-MYJCN2H7.mjs → chunk-4RNTOVBH.mjs} +395 -30
- package/dist/index.d.mts +37 -9
- package/dist/index.d.ts +37 -9
- package/dist/index.js +395 -29
- package/dist/index.mjs +1 -1
- package/dist/index.node.d.mts +1 -1
- package/dist/index.node.d.ts +1 -1
- package/dist/index.node.js +395 -29
- package/dist/index.node.mjs +1 -1
- package/dist/index.workers.d.mts +1 -1
- package/dist/index.workers.d.ts +1 -1
- package/dist/index.workers.js +395 -29
- package/dist/index.workers.mjs +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@raindrop-ai/ai-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Standalone Vercel AI SDK integration for Raindrop (events + OTLP/HTTP JSON traces, no OTEL runtime)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"smoke:min": "tsx ./scripts/smoke.min.ts",
|
|
34
34
|
"eval:agent-reporting": "tsx ./scripts/evals/agent-reporting/run.ts",
|
|
35
35
|
"harness": "tsx ./scripts/traceHarness.ts",
|
|
36
|
-
"test": "
|
|
37
|
-
"test:v4": "
|
|
38
|
-
"test:v5": "
|
|
39
|
-
"test:v6": "
|
|
40
|
-
"test:install": "cd tests/v4 &&
|
|
36
|
+
"test": "pnpm build && pnpm test:v4 && pnpm test:v5 && pnpm test:v6",
|
|
37
|
+
"test:v4": "pnpm build && cd tests/v4 && pnpm install --ignore-workspace --lockfile=false && pnpm test",
|
|
38
|
+
"test:v5": "pnpm build && cd tests/v5 && pnpm install --ignore-workspace --lockfile=false && pnpm test",
|
|
39
|
+
"test:v6": "pnpm build && cd tests/v6 && pnpm install --ignore-workspace --lockfile=false && pnpm test",
|
|
40
|
+
"test:install": "cd tests/v4 && pnpm install --ignore-workspace --lockfile=false && cd ../v5 && pnpm install --ignore-workspace --lockfile=false && cd ../v6 && pnpm install --ignore-workspace --lockfile=false"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@raindrop-ai/core": "
|
|
43
|
+
"@raindrop-ai/core": "workspace:*",
|
|
44
44
|
"@types/node": "^20.11.17",
|
|
45
45
|
"msw": "^2.12.7",
|
|
46
46
|
"tsup": "^8.4.0",
|