forked from bernaferrari/FigmaToCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.52 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
{
"name": "plugin",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "pnpm run build:ui && pnpm run build:main --minify --tree-shaking=true",
"build:main": "esbuild plugin-src/code.ts --bundle --target=ES6 --outfile=dist/code.js",
"build:ui": "vite build --minify esbuild --emptyOutDir=false",
"build:watch": "concurrently -n backend,ui \"pnpm run build:main --watch\" \"pnpm run build:ui --watch\"",
"dev": "pnpm build:watch"
},
"dependencies": {
"@figma/plugin-typings": "^1.109.0",
"backend": "workspace:*",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"lucide-react": "^0.483.0",
"motion": "^12.6.2",
"nanoid": "^5.1.5",
"plugin-ui": "workspace:*",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.17",
"@types/node": "^22.13.14",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.8.1",
"concurrently": "^9.1.2",
"esbuild": "^0.25.1",
"eslint-config-custom": "workspace:*",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"postcss": "^8.5.3",
"tailwindcss": "4.0.14",
"tsconfig": "workspace:*",
"types": "workspace:*",
"typescript": "^5.8.2",
"vite": "^5.4.15",
"vite-plugin-singlefile": "^2.2.0"
}
}