-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "@vite-pwa/workbox-window",
"type": "module",
"version": "8.0.0",
"packageManager": "[email protected]",
"description": "Simplifies communications with Workbox packages running in the service worker",
"author": "Google's Web DevRel Team, Vite PWA's Team",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/vite-pwa/workbox-window-es#readme",
"repository": {
"type": "git",
"url": "https://github.com/vite-pwa/workbox-window-es.git"
},
"bugs": "https://github.com/vite-pwa/workbox-window-es/issues",
"keywords": [
"workbox",
"workboxjs",
"service worker",
"sw",
"window",
"message",
"postMessage"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --target esnext --format esm,cjs",
"lint": "eslint .",
"lint-fix": "nr lint --fix",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish --access=public"
},
"dependencies": {},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.21.12",
"@types/node": "^18.15.3",
"@types/trusted-types": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"bumpp": "^9.2.0",
"eslint": "^8.55.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}