-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "simple-worker-vite",
"version": "0.3.0",
"description": "easy way to use web workers with vite",
"scripts": {
"dev": "vite",
"build": "vite build && npm run publint",
"publint": "npx publint --strict",
"format": "prettier --ignore-path .gitignore --write \"src/**/*.{js,ts}\""
},
"exports": {
".": {
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
},
"require": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"./plugin": {
"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/main.d.ts"
],
"plugin": [
"dist/vite-plugin.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jason-rietzke/simple-worker-vite.git"
},
"author": "Jason Rietzke <jason.rietzke@livereader.de> (https://github.com/jason-rietzke)",
"contributors": [
"Jason Rietzke <jason.rietzke@livereader.de> (https://github.com/jason-rietzke)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jason-rietzke/simple-worker-vite/issues"
},
"homepage": "https://jason-rietzke.github.io/simple-worker-vite/",
"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"
]
}