-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 957 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 957 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
28
29
{
"name": "figma-ux-writing-plugin",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite build --watch\" \"vite build --watch -c vite.config.plugin.ts\"",
"build": "vite build && mv dist/index.html dist/ui.html && vite build -c vite.config.plugin.ts && sed 's|dist/code.js|code.js|;s|dist/ui.html|ui.html|' manifest.json > dist/manifest.json",
"build:ui": "vite build",
"build:plugin": "vite build -c vite.config.plugin.ts"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@figma/plugin-typings": "^1.100.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vite-plugin-singlefile": "^2.0.3"
}
}