-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vite-plugin-prebundle-workers",
"version": "0.2.0",
"description": "Bundle classic Vite web workers during development.",
"scripts": {
"build": "vite build && npm run publint",
"publint": "npx publint --strict",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.{js,ts}\""
},
"exports": {
".": {
"import": {
"types": "./dist/vite-plugin.d.mts",
"default": "./dist/vite-plugin.mjs"
},
"require": {
"types": "./dist/vite-plugin.d.ts",
"default": "./dist/vite-plugin.js"
}
}
},
"typesVersions": {
"*": {
".": [
"dist/vite-plugin.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsjohncs/vite-plugin-prebundle-workers.git"
},
"author": "John Sullivan <johnsullivan.pem@gmail.com> (https://github.com/itsjohncs)",
"contributors": [
"Jason Rietzke <jason.rietzke@livereader.de> (https://github.com/jason-rietzke)",
"John Sullivan <johnsullivan.pem@gmail.com> (https://github.com/itsjohncs)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/itsjohncs/vite-plugin-prebundle-workers/issues"
},
"homepage": "https://github.com/itsjohncs/vite-plugin-prebundle-workers",
"devDependencies": {
"@types/node": "^20.4.9",
"esbuild": "^0.19.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.1"
},
"files": [
"dist"
],
"keywords": [
"plugin",
"utility",
"worker",
"webworker",
"vite",
"vite-plugin"
]
}