@astralbeam/sdk 0.0.6 → 0.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astralbeam/sdk",
3
- "version": "0.0.6",
3
+ "version": "0.2.0",
4
4
  "description": "Frontend SDK for AstralBeam: drop-in agent UI, chat streaming, and server helpers",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -17,6 +17,10 @@
17
17
  "types": "./dist/client.d.ts",
18
18
  "default": "./dist/client.js"
19
19
  },
20
+ "./core": {
21
+ "types": "./dist/core.d.ts",
22
+ "default": "./dist/core.js"
23
+ },
20
24
  "./server": {
21
25
  "types": "./dist/server.d.ts",
22
26
  "default": "./dist/server.js"
@@ -36,7 +40,7 @@
36
40
  },
37
41
  "scripts": {
38
42
  "build": "deno task generate:styles && tsdown",
39
- "generate:styles": "tailwindcss --input src/styles.css --output .generated/styles.css --minify && deno run --allow-read=.generated --allow-write=src/chat scripts/embed-styles.ts",
43
+ "generate:styles": "tailwindcss --input src/styles.css --output .generated/styles.css --minify && deno run --allow-read=.generated --allow-write=src/widget scripts/embed-styles.ts",
40
44
  "check": "deno task generate:styles && deno task format:check && deno task lint && deno task typecheck && deno task knip",
41
45
  "check:fix": "deno fmt && deno lint --fix",
42
46
  "format": "deno fmt",
@@ -66,6 +70,9 @@
66
70
  "optional": true
67
71
  }
68
72
  },
73
+ "dependencies": {
74
+ "effect": "4.0.0-rc.112"
75
+ },
69
76
  "devDependencies": {
70
77
  "@base-ui/react": "^1.7.0",
71
78
  "@phosphor-icons/react": "^2.1.10",