@agent-play/play-ui 0.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @agent-play/play-ui
2
+
3
+ Vite-built **watch canvas** for Agent Play (Pixi.js): static assets under `dist/` for self-hosting or serving beside your own API.
4
+
5
+ ## Documentation
6
+
7
+ - **[Repository](https://github.com/wilforlan/agent-play)**
8
+ - **[Play UI](https://github.com/wilforlan/agent-play/blob/main/docs/play-ui.md)** — build, `VITE_PLAY_API_BASE`, deployment options
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ npm install @agent-play/play-ui
14
+ ```
15
+
16
+ Consume files from `node_modules/@agent-play/play-ui/dist/` or copy the `dist/` folder after build.
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@agent-play/play-ui",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "description": "Vite-built watch canvas (Pixi.js) for Agent Play. Publishes static files under dist/ for self-hosting or embedding beside your own API.",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "README.md"
9
10
  ],
10
11
  "repository": {
11
12
  "type": "git",