-
Notifications
You must be signed in to change notification settings - Fork 479
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
package.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.121.0",
"backend": "workspace:*",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"lucide-react": "^0.483.0",
"motion": "^12.23.25",
"nanoid": "^5.1.6",
"plugin-ui": "workspace:*",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"concurrently": "^9.2.1",
"esbuild": "^0.25.12",
"eslint-config-custom": "workspace:*",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.24",
"postcss": "^8.5.10",
"tailwindcss": "4.0.14",
"tsconfig": "workspace:*",
"types": "workspace:*",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vite-plugin-singlefile": "^2.3.0"
}
}