@rizom/brain 0.1.1-alpha.8 → 0.2.0-alpha.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/README.md +16 -15
- package/dist/brain.js +1503 -861
- package/dist/deploy.d.ts +28 -0
- package/dist/deploy.js +174 -0
- package/dist/deploy.js.map +204 -0
- package/dist/seed-content/relay/deck/tutorial.md +1 -1
- package/dist/site.d.ts +2 -2
- package/dist/site.js +121 -121
- package/dist/site.js.map +9 -9
- package/dist/themes.d.ts +1 -1
- package/package.json +9 -1
package/dist/themes.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Public API contract for `@rizom/brain/themes`. Hand-maintained
|
|
5
5
|
* as a stopgap because the auto-bundlers choke on the size and
|
|
6
6
|
* edge cases of the `@brains/*` type graph. See
|
|
7
|
-
* `docs/plans/
|
|
7
|
+
* `docs/plans/external-plugin-api.md` for the replacement plan.
|
|
8
8
|
*
|
|
9
9
|
* **Sync rules:**
|
|
10
10
|
* - When `composeTheme`'s signature changes in `@brains/theme-base`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rizom/brain",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-alpha.0",
|
|
4
4
|
"description": "Brain runtime + CLI — scaffold, run, and manage AI brain instances",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"./themes": {
|
|
16
16
|
"types": "./dist/themes.d.ts",
|
|
17
17
|
"import": "./dist/themes.js"
|
|
18
|
+
},
|
|
19
|
+
"./deploy": {
|
|
20
|
+
"types": "./dist/deploy.d.ts",
|
|
21
|
+
"import": "./dist/deploy.js"
|
|
18
22
|
}
|
|
19
23
|
},
|
|
20
24
|
"files": [
|
|
@@ -54,8 +58,12 @@
|
|
|
54
58
|
"@brains/relay": "workspace:*",
|
|
55
59
|
"@brains/rover": "workspace:*",
|
|
56
60
|
"@brains/site-composition": "workspace:*",
|
|
61
|
+
"@brains/site-default": "workspace:*",
|
|
57
62
|
"@brains/site-personal": "workspace:*",
|
|
58
63
|
"@brains/site-professional": "workspace:*",
|
|
64
|
+
"@brains/site-rizom": "workspace:*",
|
|
65
|
+
"@brains/theme-default": "workspace:*",
|
|
66
|
+
"@brains/theme-rizom": "workspace:*",
|
|
59
67
|
"@brains/typescript-config": "workspace:*",
|
|
60
68
|
"@brains/utils": "workspace:*",
|
|
61
69
|
"@types/bun": "latest",
|