-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 826 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 826 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
30
31
32
33
34
35
{
"name": "figify",
"description": "A minimal Figma plugin starter template using Preact and TailwindCSS bundled with Vite",
"author": "zeyarpaing",
"keywords": [
"figma",
"figma-plugin",
"figma-plugin-template",
"vite",
"preact"
],
"private": "false",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": " tsc && vite build --watch",
"build": "tsc && vite build"
},
"dependencies": {
"preact": "^10.13.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@figma/plugin-typings": "*",
"@preact/preset-vite": "^2.5.0",
"@types/node": "^20.2.5",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"rollup": "^3.23.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.9"
}
}