-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.16 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
35
36
{
"name": "gyg-design-base-template",
"version": "1.0.0",
"description": "Your Figma plugin",
"main": "src/code.js",
"scripts": {
"start": "concurrently --kill-others -p \"{name}\" -n \"ui ,code\" -c \"cyan.bold,green.bold\" \"npm run start:ui\" \"npm run start:code\"",
"start:ui": "vite build --watch --config vite-ui.config.js",
"start:code": "vite build --watch --config vite-code.config.js",
"build": "vite build --config vite-ui.config.js && vite build --config vite-code.config.js"
},
"author": "",
"license": "",
"dependencies": {
"@figma/plugin-typings": "^1.40.0",
"@headlessui/vue": "^1.7.17",
"@iconify/json": "^2.2.169",
"typescript": "^4.5.4",
"vue": "^3.2.26"
},
"devDependencies": {
"@iconify/tailwind": "^0.1.4",
"@iconify/vue": "^4.1.1",
"@jumpu-ui/tailwindcss": "^1.0.1-alpha.6",
"@tailwindcss/typography": "^0.5.10",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"autoprefixer": "^10.4.16",
"concurrently": "^7.6.0",
"postcss": "^8.4.33",
"sass": "^1.69.7",
"tailwindcss": "^3.4.1",
"vite": "^2.7.10",
"vite-plugin-singlefile": "^0.6.3"
}
}