-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.72 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.72 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
{
"name": "aesthetic-function",
"version": "0.1.0",
"private": true,
"description": "Bidirectional synchronization between React codebase and Figma",
"packageManager": "pnpm@9.14.2",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"dev:watcher": "pnpm --filter @aesthetic-function/watcher watch",
"dev:server": "pnpm --filter @aesthetic-function/server dev",
"dev:plugin": "pnpm --filter @aesthetic-function/figma-plugin dev",
"test:send": "pnpm --filter @aesthetic-function/watcher test:send",
"test:red": "pnpm --filter @aesthetic-function/watcher test:red",
"test:blue": "pnpm --filter @aesthetic-function/watcher test:blue",
"test:text": "pnpm --filter @aesthetic-function/watcher test:text",
"tunnel": "npx cloudflared tunnel --url http://localhost:3001",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean && rm -rf node_modules",
"test": "pnpm --filter @aesthetic-function/watcher test",
"demo:server": "echo '📡 Starting server...' && pnpm --filter @aesthetic-function/server dev",
"demo:watcher": "echo '👁 Starting watcher...' && pnpm --filter @aesthetic-function/watcher watch",
"demo:feature": "echo '🎯 Running feature orchestrator...' && pnpm --filter @aesthetic-function/watcher cli:feature",
"demo:fast": "echo '⚡ Quick demo: server + watcher + feature (use --prompt)' && concurrently -n server,watcher 'pnpm demo:server' 'sleep 2 && pnpm demo:watcher'",
"demo:tunnel": "echo '🚇 Expose server for Figma plugin...' && pnpm tunnel && echo 'Copy the HTTPS URL to Figma plugin settings'",
"dev:storybook": "cd demo-app && npx storybook dev -p 6006"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}