-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 968 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 968 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@beekeeperstudio/vite-plugin",
"version": "1.0.3",
"description": "A Vite plugin for Beekeeper Studio plugin development that enables hot reloading",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"error.html"
],
"scripts": {
"build": "unbuild",
"prepack": "unbuild"
},
"keywords": [
"vite-plugin",
"beekeeper-studio"
],
"author": "Beekeeper Studio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/beekeeper-studio/vite-plugin"
},
"peerDependencies": {
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
"@beekeeperstudio/plugin": "^1.3.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"unbuild": "^3.6.1",
"vite": "^7.1.3"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}