-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 879 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 879 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
{
"name": "plugin-name",
"version": "1.0.0",
"description": "insert your description",
"main": "/dist/code/code.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run watch:code\" \"npm run watch:ui\"",
"build": "npm run build:ui && npm run build:code",
"watch:code": "vite build --watch",
"build:code": "vite build",
"watch:ui": "chokidar 'src/**/*.astro' 'src/**/*.ts' 'src/**/*.css' '!src/code.ts' -c 'npm run build:ui'",
"build:ui": "astro build"
},
"author": "your precious name",
"license": "",
"devDependencies": {
"@astrojs/check": "^0.5.10",
"@figma/plugin-typings": "^1.87.0",
"@types/node": "^25.4.0",
"@vitejs/plugin-vue": "^5.0.4",
"astro": "^4.1.1",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"terser": "^5.26.0",
"typescript": "^5.3.3",
"vite": "^5.1.0"
}
}