@paperclipai/ui 0.3.1

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 +11 -0
  2. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @paperclipai/ui
2
+
3
+ Published static assets for the Paperclip board UI.
4
+
5
+ ## What gets published
6
+
7
+ The npm package contains the production build under `dist/`. It does not ship the UI source tree or workspace-only dependencies.
8
+
9
+ ## Typical use
10
+
11
+ Install the package, then serve or copy the built files from `node_modules/@paperclipai/ui/dist`.
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@paperclipai/ui",
3
+ "version": "0.3.1",
4
+ "description": "Prebuilt Paperclip board UI assets.",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/paperclipai/paperclip",
7
+ "bugs": {
8
+ "url": "https://github.com/paperclipai/paperclip/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/paperclipai/paperclip",
13
+ "directory": "ui"
14
+ },
15
+ "type": "module",
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ }
22
+ }