-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.76 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.76 KB
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
{
"name": "@budarin/pluggable-serviceworker",
"version": "1.17.6",
"description": "Extensible via plugins service worker",
"keywords": [
"serviceworker",
"plugins",
"extensible",
"serviceworker-plugins",
"serviceworker-plugins-extensible"
],
"author": "Vadim Budarin",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": "./dist/index.js",
"./client": "./dist/client/index.js",
"./client/registration": "./dist/client/registration/index.js",
"./client/messaging": "./dist/client/messaging/index.js",
"./client/health": "./dist/client/health/index.js",
"./client/background-fetch": "./dist/client/backgroundFetch/index.js",
"./plugins": "./dist/plugins/index.js",
"./presets": "./dist/presets/index.js",
"./sw": "./dist/sw/index.js",
"./utils": "./dist/utils/index.js"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/serviceworker": "^0.0.193",
"@types/web": "^0.0.342",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@budarin/http-constants": "^1.0.22"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"type-check": "tsc -b -noEmit",
"test:watch": "vitest",
"clear-caches": "sh scripts/clear-caches.sh",
"pnpm-install": "pnpm install",
"sync-workspace": "sh scripts/sync-workspace.sh",
"upgrade-deps": "sh scripts/upgrade-deps.sh",
"publish-package": "pnpm build && pnpm publish --access=public"
}
}