@agentdeck/shared 1.0.13 → 1.0.14
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 +15 -0
- package/package.json +7 -1
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @agentdeck/shared
|
|
2
|
+
|
|
3
|
+
Shared protocol types, state machines, and layout engines for **[AgentDeck](https://github.com/puritysb/AgentDeck)**.
|
|
4
|
+
|
|
5
|
+
This is an internal dependency of [`@agentdeck/bridge`](https://www.npmjs.com/package/@agentdeck/bridge) and is published only so that package can resolve it. It has no standalone use and no API stability guarantees between versions.
|
|
6
|
+
|
|
7
|
+
To install AgentDeck, use:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @agentdeck/setup
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## License
|
|
14
|
+
|
|
15
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentdeck/shared",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
|
+
"engines": {
|
|
5
|
+
"node": ">=22"
|
|
6
|
+
},
|
|
7
|
+
"description": "Shared protocol types and layout engines for AgentDeck (internal dependency of @agentdeck/bridge)",
|
|
4
8
|
"type": "module",
|
|
5
9
|
"sideEffects": false,
|
|
6
10
|
"license": "MIT",
|
|
11
|
+
"homepage": "https://github.com/puritysb/AgentDeck#readme",
|
|
12
|
+
"bugs": "https://github.com/puritysb/AgentDeck/issues",
|
|
7
13
|
"repository": {
|
|
8
14
|
"type": "git",
|
|
9
15
|
"url": "https://github.com/puritysb/AgentDeck.git",
|