-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 KB
/
package.json
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
{
"name": "figma-plugin-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run dev:code\"",
"dev:ui": "vite",
"build": "tsc -b && vite build && npm run build:code",
"build:watch": "vite build --watch",
"preview": "vite preview",
"build:code": "tsup plugin-src/code.ts --format esm --target es5 --out-dir out",
"dev:code": "tsup plugin-src/code.ts --format esm --target es5 --out-dir out --watch"
},
"dependencies": {
"@tailwindcss/vite": "^4.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
"@figma/plugin-typings": "^1.108.0",
"@swc/core": "^1.11.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react-swc": "^3.8.0",
"concurrently": "^9.1.2",
"globals": "^15.15.0",
"tsup": "^8.4.0",
"typescript": "~5.7.2",
"vite": "^6.2.0",
"vite-plugin-singlefile": "^2.1.0"
}
}