-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "precache-striping",
"version": "0.3.4",
"license": "MIT",
"author": {
"email": "yeori.seo@gmail.com",
"name": "Yeori",
"url": "https://github.com/yeori"
},
"type": "module",
"description": "Sending concurrent requests with workbox-precaching library",
"repository": "yeori/precaching-striping",
"keywords": [
"workbox",
"precaching",
"precache",
"service worker",
"concurrency"
],
"files": [
"dist"
],
"main": "./dist/precache-striping.umd.cjs",
"module": "./dist/precache-striping.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/precache-striping.js",
"require": "./dist/precache-striping.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.8.9",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.1",
"workbox-precaching": ">=6.5.0",
"workbox-routing": ">=6.5.0"
},
"peerDependencies": {
"workbox-precaching": ">=6.5.0",
"workbox-routing": ">=6.5.0"
}
}