@ufira/vibma 0.1.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.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@ufira/vibma",
3
+ "description": "Vibma — Vibe Design meets Figma. AI-powered MCP bridge for designing in Figma.",
4
+ "version": "0.1.0",
5
+ "license": "MIT",
6
+ "author": "ufira <https://github.com/ufira-ai>",
7
+ "homepage": "https://github.com/ufira-ai/vibma",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/ufira-ai/vibma.git"
11
+ },
12
+ "keywords": [
13
+ "figma",
14
+ "mcp",
15
+ "ai",
16
+ "design",
17
+ "model-context-protocol",
18
+ "vibe-coding"
19
+ ],
20
+ "module": "dist/mcp.js",
21
+ "main": "dist/mcp.js",
22
+ "bin": {
23
+ "vibma": "dist/mcp.js"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "type": "module",
31
+ "scripts": {
32
+ "start": "bun run dist/mcp.js",
33
+ "socket": "bun run src/socket.ts",
34
+ "setup": "./scripts/setup.sh",
35
+ "build": "tsup",
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"
40
+ },
41
+ "devDependencies": {
42
+ "@figma/plugin-typings": "^1.123.0",
43
+ "@types/bun": "latest",
44
+ "bun-types": "^1.3.10",
45
+ "tsup": "^8.5.1",
46
+ "typescript": "^5.9.3"
47
+ },
48
+ "dependencies": {
49
+ "@modelcontextprotocol/sdk": "1.27.1",
50
+ "uuid": "latest",
51
+ "ws": "latest",
52
+ "zod": "4.3.6"
53
+ }
54
+ }