-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 954 Bytes
/
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
{
"name": "figma-plugin-boiler",
"version": "0.0.1",
"description": "Figma Boilerplate",
"scripts": {
"build": "npm run clean && npm run build:ui && npm run build:code",
"build:code": "vite build --config vite-code.config.js",
"build:ui": "vite build --config vite-ui.config.js",
"clean": "rm -rf ./dist",
"dev": "npm run clean && mprocs 'npm run dev:ui' 'npm run dev:code'",
"dev:code": "vite build --watch --config vite-code.config.js",
"dev:ui": "vite build --watch --config vite-ui.config.js"
},
"dependencies": {
"@figma/plugin-typings": "^1.40.0",
"prismjs": "^1.29.0",
"typescript": "^4.5.4",
"vue": "^3.2.26"
},
"devDependencies": {
"@types/prismjs": "^1.26.4",
"@vitejs/plugin-vue": "^2.0.1",
"@vue/compiler-sfc": "^3.2.26",
"mprocs": "^0.6.4",
"sass": "^1.77.6",
"vite": "^2.7.10",
"vite-plugin-singlefile": "^0.6.3",
"vite-svg-loader": "^5.1.0"
}
}