forked from penpot/penpot-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 837 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
{
"name": "penpot-ai-ollama",
"homepage": "https://nathfavour.github.io/penpot-ai-ollama/",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite-live-preview",
"build": "tsc && vite build",
"build:plugin": "esbuild src/plugin.ts --minify --outfile=dist/plugin.js",
"build:all": "npm run build && npm run build:plugin",
"predeploy": "npm run build:all && cp dist/plugin.js dist/penpot-ai/public/ && touch dist/.nojekyll",
"deploy": "gh-pages -d dist --dotfiles true"
},
"dependencies": {
"@penpot/plugin-styles": "1.0.0",
"@penpot/plugin-types": "1.0.0",
"@vitejs/plugin-react": "^4.3.4"
},
"devDependencies": {
"esbuild": "^0.24.0",
"gh-pages": "^6.2.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-live-preview": "^0.2.2"
}
}