-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.15 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
57
58
59
{
"name": "next-push",
"version": "1.0.9",
"description": "A modern and powerful push notification library for Next.js",
"main": "dist/client/index.js",
"types": "dist/types.d.ts",
"exports": {
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"next-push-sw.js"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"push-notifications",
"web-push",
"service-worker",
"react",
"typescript",
"vapid"
],
"author": "clqu <mail@clqu.dev>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@types/react": "^19.1.9",
"@types/web-push": "^3.6.4",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"tsc": "^2.0.4",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"web-push": "^3.6.7"
}
}