-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.05 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.05 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
{
"name": "interface-ai",
"version": "0.1.0",
"description": "Figma design to native mobile code conversion pipeline",
"private": true,
"workspaces": [
"figma-plugin",
"a2ui-parser",
"mobile-codegen"
],
"scripts": {
"setup": "npm install && cd dashboard && npm install && cd ../cli && npm install && echo '' && echo '✅ All dependencies installed.' && echo 'Next: copy dashboard/.env.example to dashboard/.env and add your ANTHROPIC_API_KEY'",
"dev": "cd dashboard && npx tsx server.ts",
"dev:dashboard": "cd dashboard && npx tsx server.ts",
"build": "npm run build --workspaces",
"build:plugin": "npm run build -w figma-plugin",
"build:parser": "npm run build -w a2ui-parser",
"build:codegen": "npm run build -w mobile-codegen",
"build:dashboard": "cd dashboard && npm run build",
"ios:setup": "cd ios-renderer/Examples/A2UIDemoApp && xcodegen generate && echo '✅ Xcode project generated: InterfaceAI.xcodeproj'"
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.11.0"
}
}