-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.32 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
{
"name": "next-sw",
"type": "commonjs",
"version": "2.4.0",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./lib/client.js": {
"types": "./lib/client.d.ts",
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"author": {
"name": "Anton Petrov",
"email": "[email protected]",
"url": "https://petrov.engineer"
},
"description": "Next service worker plugin",
"license": "MIT",
"keywords": [
"next",
"nextjs",
"next.js",
"sw",
"serviceworker",
"service-worker"
],
"homepage": "https://github.com/eolme/next-sw",
"bugs": "https://github.com/eolme/next-sw/issues",
"repository": {
"type": "git",
"url": "https://github.com/eolme/next-sw.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@mntm/eslint-config": "^1.4.0",
"@types/webpack": "^5.28.4",
"eslint": "^8.52.0",
"next": "^13.5.6",
"typescript": "^5.2.2"
},
"peerDependencies": {
"next": "^14.0.0 || ^13.0.0 || ^12.0.4"
},
"peerDependenciesMeta": {
"next": {
"optional": false
}
},
"optionalDependencies": {
"@types/webpack": "^5.28.4"
}
}