@ufira/vibma 0.1.0 → 0.1.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 +2 -2
  2. package/package.json +11 -10
package/README.md CHANGED
@@ -28,13 +28,13 @@ Two paths:
28
28
  | | Guide | For |
29
29
  |---|---|---|
30
30
  | 📦 | [**DRAGME.md**](./DRAGME.md) | Clone the repo, build from source, full control |
31
- | ☁️ | [**CARRYME.md**](./CARRYME.md) | Install from Figma store, zero cloning *(coming soon)* |
31
+ | ☁️ | [**CARRYME.md**](./CARRYME.md) | Install from npm, zero cloning |
32
32
 
33
33
  Or just paste this to your AI agent and let it figure it out:
34
34
 
35
35
  ```
36
36
  Set up Vibma so I can vibe-design in Figma.
37
- Follow the instructions at https://raw.githubusercontent.com/ufira-ai/vibma/refs/heads/main/DRAGME.md
37
+ Follow the instructions at https://raw.githubusercontent.com/ufira-ai/vibma/refs/heads/main/CARRYME.md
38
38
  ```
39
39
 
40
40
  ## Community
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ufira/vibma",
3
3
  "description": "Vibma — Vibe Design meets Figma. AI-powered MCP bridge for designing in Figma.",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "license": "MIT",
6
6
  "author": "ufira <https://github.com/ufira-ai>",
7
7
  "homepage": "https://github.com/ufira-ai/vibma",
@@ -20,7 +20,7 @@
20
20
  "module": "dist/mcp.js",
21
21
  "main": "dist/mcp.js",
22
22
  "bin": {
23
- "vibma": "dist/mcp.js"
23
+ "vibma-mcp": "dist/mcp.js"
24
24
  },
25
25
  "files": [
26
26
  "dist",
@@ -29,20 +29,21 @@
29
29
  ],
30
30
  "type": "module",
31
31
  "scripts": {
32
- "start": "bun run dist/mcp.js",
33
- "socket": "bun run src/socket.ts",
32
+ "start": "node dist/mcp.js",
33
+ "socket": "tsx packages/tunnel/src/index.ts",
34
34
  "setup": "./scripts/setup.sh",
35
35
  "build": "tsup",
36
36
  "build:watch": "tsup --watch",
37
- "dev": "bun run build:watch",
38
- "dev:mcp": "bun run src/mcp.ts",
39
- "pub:release": "bun run build && npm publish"
37
+ "dev": "npm run build:watch",
38
+ "dev:mcp": "tsx src/mcp.ts",
39
+ "pub:release": "npm run build && npm publish"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@figma/plugin-typings": "^1.123.0",
43
- "@types/bun": "latest",
44
- "bun-types": "^1.3.10",
43
+ "@types/node": "^25.3.2",
44
+ "@types/ws": "^8.18.1",
45
45
  "tsup": "^8.5.1",
46
+ "tsx": "^4.21.0",
46
47
  "typescript": "^5.9.3"
47
48
  },
48
49
  "dependencies": {
@@ -51,4 +52,4 @@
51
52
  "ws": "latest",
52
53
  "zod": "4.3.6"
53
54
  }
54
- }
55
+ }