vibefigma 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.
- package/LICENSE +110 -0
- package/NOTICE +32 -0
- package/README.md +216 -0
- package/bin/vibefigma.js +2 -0
- package/dist/cli/canvas-565z0797.node +0 -0
- package/dist/cli/index.js +164223 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibefigma",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Convert Figma designs to React components with Tailwind CSS",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"vibefigma": "./bin/vibefigma.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"dist/cli/",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"NOTICE"
|
|
16
|
+
],
|
|
17
|
+
"keywords": [
|
|
18
|
+
"figma",
|
|
19
|
+
"react",
|
|
20
|
+
"converter",
|
|
21
|
+
"cli",
|
|
22
|
+
"jsx",
|
|
23
|
+
"tsx",
|
|
24
|
+
"tailwind",
|
|
25
|
+
"tailwindcss",
|
|
26
|
+
"design-to-code",
|
|
27
|
+
"figma-to-react",
|
|
28
|
+
"figma-api",
|
|
29
|
+
"code-generation",
|
|
30
|
+
"component-generator"
|
|
31
|
+
],
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "VibeFlowing Inc",
|
|
34
|
+
"url": "https://vibeflow.ai"
|
|
35
|
+
},
|
|
36
|
+
"repository": {
|
|
37
|
+
"type": "git",
|
|
38
|
+
"url": "https://github.com/vibeflowing-inc/vibe_figma.git"
|
|
39
|
+
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/vibeflowing-inc/vibe_figma/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/vibeflowing-inc/vibe_figma#readme",
|
|
44
|
+
"license": "FSL-1.1-MIT",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"dev": "bun run --hot src/index.ts",
|
|
50
|
+
"dev:cli": "bun run src/cli/index.ts",
|
|
51
|
+
"build:cli": "bun build src/cli/index.ts --outfile dist/cli/index.js --target node --format esm --outdir dist",
|
|
52
|
+
"cli": "node bin/vibefigma.js",
|
|
53
|
+
"prepublishOnly": "bun run build:cli"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@ai-sdk/google": "^3.0.10",
|
|
57
|
+
"@babel/generator": "^7.28.6",
|
|
58
|
+
"@babel/parser": "^7.28.6",
|
|
59
|
+
"@babel/traverse": "^7.28.6",
|
|
60
|
+
"@babel/types": "^7.28.6",
|
|
61
|
+
"ai": "^6.0.39",
|
|
62
|
+
"chalk": "^5.6.2",
|
|
63
|
+
"colord": "2.9.3",
|
|
64
|
+
"commander": "^14.0.2",
|
|
65
|
+
"css-what": "6.1.0",
|
|
66
|
+
"hono": "^4.11.4",
|
|
67
|
+
"hono-rate-limiter": "^0.5.3",
|
|
68
|
+
"htmltojsx": "^0.3.0",
|
|
69
|
+
"ora": "^9.1.0",
|
|
70
|
+
"postcss": "^8.4.20",
|
|
71
|
+
"postcss-safe-parser": "^6.0.0",
|
|
72
|
+
"prettier": "^3.8.0",
|
|
73
|
+
"prompts": "^2.4.2",
|
|
74
|
+
"tailwindcss": "3",
|
|
75
|
+
"zod": "^4.3.5"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/babel__generator": "^7.27.0",
|
|
79
|
+
"@types/babel__traverse": "^7.28.0",
|
|
80
|
+
"@types/bun": "latest",
|
|
81
|
+
"@types/htmltojsx": "^0.0.33",
|
|
82
|
+
"@types/node": "^25.0.10",
|
|
83
|
+
"@types/postcss-safe-parser": "^5.0.1",
|
|
84
|
+
"@types/prompts": "^2.4.9",
|
|
85
|
+
"typescript": "^5.9.3"
|
|
86
|
+
}
|
|
87
|
+
}
|