@astralbeam/sdk 0.6.0 → 0.7.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.6.0",
3
+ "version": "0.7.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",
@@ -31,10 +31,6 @@
31
31
  "types": "./dist/react.d.ts",
32
32
  "default": "./dist/react.js"
33
33
  },
34
- "./vue": {
35
- "types": "./dist/vue.d.ts",
36
- "default": "./dist/vue.js"
37
- },
38
34
  "./package.json": "./package.json"
39
35
  },
40
36
  "typesVersions": {
@@ -50,9 +46,6 @@
50
46
  ],
51
47
  "react": [
52
48
  "./dist/react.d.ts"
53
- ],
54
- "vue": [
55
- "./dist/vue.d.ts"
56
49
  ]
57
50
  }
58
51
  },
@@ -61,13 +54,14 @@
61
54
  },
62
55
  "scripts": {
63
56
  "build": "deno task generate:styles && tsdown",
57
+ "dev": "deno task generate:styles && tsdown --watch",
64
58
  "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",
65
59
  "check": "deno task generate:styles && deno task format:check && deno task lint && deno task typecheck && deno task knip",
66
60
  "check:fix": "deno fmt && deno lint --fix",
67
61
  "format": "deno fmt",
68
62
  "format:check": "deno fmt --check",
69
63
  "knip": "knip",
70
- "knip:fix": "knip --fix --allow-remove-files && knip --fix --allow-remove-files && deno install",
64
+ "knip:fix": "knip --fix --allow-remove-files && knip --fix --allow-remove-files && deno install --frozen",
71
65
  "lint": "deno lint",
72
66
  "lint:fix": "deno lint --fix",
73
67
  "ready": "deno task check && deno task test && deno task build",
@@ -77,8 +71,7 @@
77
71
  },
78
72
  "peerDependencies": {
79
73
  "react": ">=18",
80
- "react-dom": ">=18",
81
- "vue": ">=3"
74
+ "react-dom": ">=18"
82
75
  },
83
76
  "peerDependenciesMeta": {
84
77
  "react": {
@@ -86,14 +79,8 @@
86
79
  },
87
80
  "react-dom": {
88
81
  "optional": true
89
- },
90
- "vue": {
91
- "optional": true
92
82
  }
93
83
  },
94
- "dependencies": {
95
- "effect": "4.0.0-rc.112"
96
- },
97
84
  "devDependencies": {
98
85
  "@base-ui/react": "^1.7.0",
99
86
  "@phosphor-icons/react": "^2.1.10",
@@ -101,7 +88,6 @@
101
88
  "@tailwindcss/cli": "^4.3.3",
102
89
  "@tanstack/ai": "^0.49.1",
103
90
  "@tanstack/ai-client": "^0.28.0",
104
- "@tanstack/ai-react": "^0.22.1",
105
91
  "@tanstack/markdown": "^0.0.13",
106
92
  "@types/react": "^19.2.13",
107
93
  "@types/react-dom": "^19.2.3",
package/dist/vue.d.ts DELETED
@@ -1,4 +0,0 @@
1
- //#region src/vue/index.d.ts
2
- declare const entrypoint = "vue";
3
- //#endregion
4
- export { entrypoint };
package/dist/vue.js DELETED
@@ -1,4 +0,0 @@
1
- //#region src/vue/index.ts
2
- const entrypoint = "vue";
3
- //#endregion
4
- export { entrypoint };