composeai 0.1.1 → 0.1.3
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/LICENSE +21 -0
- package/README.md +7 -1
- package/package.json +6 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 igbaryya
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
**The modern React composer for AI applications.**
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
5
9
|
`composeai` is a drop-in `<Composer />` for AI chat and assistant UIs — the input box behind copilots, support bots, agent workspaces, and any surface where users compose prompts for an LLM. It is built on Lexical, ships its own styles, and is designed to feel like a first-party ChatGPT or Slack composer on day one.
|
|
6
10
|
|
|
7
11
|
### Why composeai?
|
|
@@ -19,6 +23,8 @@ Building an AI chat input means solving dozens of UX problems at once: markdown
|
|
|
19
23
|
- **BYO icons** — ships inlined SVGs; replace any one with your own component.
|
|
20
24
|
- **Themeable** — `color` shorthand, full `tokens`, per-slot `classNames` + `sx`, no global CSS leakage.
|
|
21
25
|
|
|
26
|
+
**Links:** [Live demo](https://igbaryya.github.io/composeai/) · [GitHub](https://github.com/igbaryya/composeai)
|
|
27
|
+
|
|
22
28
|
## Install
|
|
23
29
|
|
|
24
30
|
```bash
|
|
@@ -262,4 +268,4 @@ gracefully no-ops where neither is available.
|
|
|
262
268
|
|
|
263
269
|
## License
|
|
264
270
|
|
|
265
|
-
MIT.
|
|
271
|
+
MIT — see [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "composeai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "The modern React composer for AI applications — a drop-in Lexical-powered chat input with markdown, mentions, slash commands, attachments, voice, streaming stop, and opt-in plugins for copilots, chatbots, and agent UIs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
19
|
"src/composer.css",
|
|
20
|
-
"README.md"
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
21
22
|
],
|
|
22
23
|
"sideEffects": [
|
|
23
24
|
"./src/composer.css"
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"attachments"
|
|
72
73
|
],
|
|
73
74
|
"license": "MIT",
|
|
74
|
-
"homepage": "https://igbaryya.github.io/
|
|
75
|
+
"homepage": "https://igbaryya.github.io/composeai/",
|
|
75
76
|
"repository": {
|
|
76
77
|
"type": "git",
|
|
77
|
-
"url": "git+https://github.com/igbaryya/
|
|
78
|
+
"url": "git+https://github.com/igbaryya/composeai.git"
|
|
78
79
|
},
|
|
79
80
|
"bugs": {
|
|
80
|
-
"url": "https://github.com/igbaryya/
|
|
81
|
+
"url": "https://github.com/igbaryya/composeai/issues"
|
|
81
82
|
}
|
|
82
83
|
}
|