-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.21 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "figma-to-code-agent",
"version": "0.8.0",
"description": "AI Agent that converts Figma designs to production-ready code with optional LLM enhancements",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"figma-to-code-agent": "dist/cli.js",
"figma-to-code-mcp": "dist/mcp.js"
},
"files": [
"dist",
"test-app/test-react/src/**/*.{jsx,css}",
"test-app/test-react/src/main.jsx",
"test-app/test-react/index.html",
"test-app/test-react/vite.config.js",
"test-app/test-react/package.json",
"test-app/test-vue/src/**/*.{vue,js}",
"test-app/test-vue/src/main.js",
"test-app/test-vue/index.html",
"test-app/test-vue/vite.config.js",
"test-app/test-vue/package.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"QUICKSTART.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"figma",
"code-generation",
"react",
"vue",
"design-to-code",
"ai",
"llm",
"bedrock",
"openai",
"anthropic"
],
"author": "lewiscutey",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lewiscutey/figma-to-code-agent.git"
},
"bugs": {
"url": "https://github.com/lewiscutey/figma-to-code-agent/issues"
},
"homepage": "https://github.com/lewiscutey/figma-to-code-agent#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.987.0",
"@modelcontextprotocol/sdk": "^0.5.0",
"@types/uuid": "^10.0.0",
"axios": "^1.6.7",
"fast-check": "^3.15.1",
"puppeteer": "^22.0.0",
"uuid": "^13.0.0",
"ws": "^8.19.0"
}
}