-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 840 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 840 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
{
"name": "presentator-figma",
"description": "Figma plugin to export design frames directly to Presentator",
"private": true,
"scripts": {
"dev": "vite -c ./vite.config.ui.js",
"build:ui": "vite build -c ./vite.config.ui.js",
"build:plugin": "vite build -c ./vite.config.plugin.js",
"build": "npm run build:ui && npm run build:plugin",
"preview": "vite preview -c ./vite.config.ui.js"
},
"type": "module",
"prettier": {
"tabWidth": 4,
"printWidth": 110,
"svelteBracketNewLine": true
},
"dependencies": {
"figma-plugin-ds": "^1.0.1",
"pocketbase": "^0.20.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"sass": "^1.69.5",
"svelte": "^4.0.0",
"svelte-spa-router": "^3.3.0",
"vite": "^5.0.5",
"vite-plugin-singlefile": "^0.13.5"
}
}