forked from tnarla/loom-figma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "loom",
"version": "1.0.0",
"description": "A Loom Embed Widget in FigJam",
"scripts": {
"zip": "mkdir -p out && npm run build && zip -r out/create-widget-app.zip . -x node_modules/\\* -x plugin-typings/node_modules/\\* -x .\\* -x out/\\* -x plugin-typings/*.zip plugin-typings/.\\*",
"format": "prettier --write .",
"build:main": "tsc",
"build:ui": "npx vite build --minify esbuild --emptyOutDir=false",
"build:main:watch": "tsc --watch",
"build:ui:watch": "npx vite build --minify esbuild --emptyOutDir=false --watch",
"build": "npm run build:ui && npm run build:main",
"dev:ui": "npx vite",
"test": "tsc --noEmit"
},
"author": "Figma",
"license": "MIT License",
"dependencies": {
"@loomhq/loom-embed": "^1.2.6",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.3.5",
"postcss": "^8.3.7",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.15",
"typescript": "^4.4.2",
"vite": "^2.5.2",
"vite-plugin-singlefile": "^0.5.1"
}
}