mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
* 🐛 Fix plugin code build * 🔧 Update editor.defaultFormatter to new Prettier * 🐛 Fix lint issues in create-palette-plugin * 🐛 Add missing run in pnpm init script for plugins
16 lines
409 B
JSON
16 lines
409 B
JSON
{
|
|
"name": "create-palette-plugin",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"build:watch": "vite build --watch --mode development",
|
|
"preview": "vite preview",
|
|
"init": "concurrently --kill-others --names build,serve \"pnpm run build:watch\" \"pnpm run preview\"",
|
|
"lint": "eslint .",
|
|
"test": "vitest"
|
|
}
|
|
}
|