forked from Djanghao/widget2code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 836 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 836 Bytes
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
{
"name": "ai-widget-factory",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"libs/js/*",
"apps/playground"
],
"scripts": {
"start": "npm start --workspace=apps/playground",
"dev": "npm run dev --workspace=apps/playground",
"dev:full": "npm run dev:full --workspace=apps/playground",
"api": "cd apps/api && ./.venv/bin/python server.py",
"build": "npm run build --workspaces --if-present",
"prepare:dynamic": "node libs/js/icons/custom/sf-symbols/scripts/prepare-dynamic-icons.js",
"build:icons": "node libs/js/icons/custom/sf-symbols/scripts/generate-icons.js",
"render": "npm run render --workspace=apps/playground"
},
"devDependencies": {
"cross-env": "^10.1.0",
"vite": "^5.0.0"
},
"dependencies": {
"lucide-react": "^0.434.0"
}
}