-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
31
32
33
{
"name": "example-plugin-git-ui",
"type": "module",
"version": "0.1.12",
"private": true,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown --config-loader=tsx",
"play:dev": "pnpm run build && cd playground && DEBUG='vite:devtools:*' vite",
"play:build": "pnpm run build && cd playground && vite build && vite-devtools build",
"play:preview": "serve ./playground/.vite-devtools"
},
"peerDependencies": {
"vite": "*"
},
"dependencies": {
"@vitejs/devtools": "workspace:*",
"@vitejs/devtools-kit": "workspace:*",
"tinyexec": "catalog:deps"
},
"devDependencies": {
"serve": "catalog:devtools",
"tsdown": "catalog:build",
"vite": "catalog:build"
}
}