fubi 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.
Files changed (2) hide show
  1. package/README.md +18 -7
  2. package/package.json +17 -2
package/README.md CHANGED
@@ -1,15 +1,16 @@
1
1
  # Fubi
2
2
 
3
- Fubi is a lightweight, feature-rich in-page feedback and collaboration tool built with Svelte. It allows users to leave contextual comments on specific elements of your web application, streamlining the feedback process for teams.
3
+ Fubi is a lightweight, universal in-page feedback and collaboration tool. It allows users to leave contextual comments on specific elements of any web application, streamlining the feedback process for teams. For more information, visit [fubi.dev](https://fubi.dev).
4
4
 
5
5
  ## Features
6
6
 
7
- - **Element Isolation**: Select and isolate specific page elements for targeted feedback
8
- - **Threaded Comments**: Create and manage comment threads tied to specific page elements
9
- - **Project Management**: Organize feedback by projects
10
- - **Page Tracking**: Automatically tracks pages where feedback is provided
11
- - **Real-time Updates**: Get notified of new comments and threads in real-time
12
- - **Easy Integration**: Simple to integrate into any web application
7
+ - 🎯 **Element Isolation**: Select and isolate specific page elements for targeted feedback
8
+ - 💬 **Threads & Comments**: Create comment threads attached to specific page elements
9
+ - **Mark as Done**: Track progress by marking feedback threads as completed
10
+ - 🔄 **Page Switcher**: Easily navigate between pages where feedback is provided
11
+ - **Real-time**: Get notified of new comments and changes instantly
12
+ - 🔌 **Easy Integration**: Simple to integrate into any web application
13
+ - 📦 **Tiny**: Lightweight package with minimal impact on your website
13
14
 
14
15
  ## Installation
15
16
 
@@ -31,6 +32,16 @@ const app = fubi({
31
32
  });
32
33
  ```
33
34
 
35
+ ## Activation
36
+
37
+ To open the Fubi feedback interface, simply add the `fubi` parameter to your URL:
38
+
39
+ ```
40
+ https://yourwebsite.com/?fubi
41
+ ```
42
+
43
+ This makes it easy to share feedback-enabled links with your team.
44
+
34
45
  ## Getting Started
35
46
 
36
47
  To use Fubi, you'll need to create an account at [fubi.dev](https://fubi.dev) where you can set up your projects and manage your feedback.
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "fubi",
3
- "version": "0.1.1",
3
+ "description": "A lightweight, universal in-page feedback and collaboration tool for web applications.",
4
+ "author": "Wonder Makers",
5
+ "version": "0.1.3",
6
+ "homepage": "https://fubi.dev",
4
7
  "type": "module",
5
8
  "scripts": {
6
9
  "dev": "vite",
@@ -34,5 +37,17 @@
34
37
  "rollup-plugin-postcss": "^4.0.2",
35
38
  "tailwindcss": "^4.0.9",
36
39
  "vite-plugin-css-injected-by-js": "^3.5.2"
37
- }
40
+ },
41
+ "keywords": [
42
+ "feedback",
43
+ "collaboration",
44
+ "comments",
45
+ "annotation",
46
+ "ui-feedback",
47
+ "web-comments",
48
+ "feedback-tool",
49
+ "in-page-feedback",
50
+ "element-comments",
51
+ "realtime"
52
+ ]
38
53
  }