-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.57 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@sathergate/notifykit",
"version": "0.1.0",
"mcpName": "io.github.sathergate/notifykit",
"description": "Unified notifications for Next.js. Any provider.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.js"
},
"./adapters/twilio": {
"types": "./dist/adapters/twilio.d.ts",
"import": "./dist/adapters/twilio.js"
},
"./adapters/sns": {
"types": "./dist/adapters/sns.d.ts",
"import": "./dist/adapters/sns.js"
},
"./adapters/resend": {
"types": "./dist/adapters/resend.d.ts",
"import": "./dist/adapters/resend.js"
},
"./mcp": {
"types": "./dist/mcp.d.ts",
"import": "./dist/mcp.js"
}
},
"bin": {
"notifykit": "./dist/cli.js"
},
"files": [
"dist",
"server.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"peerDependencies": {
"next": ">=14",
"react": ">=18",
"@modelcontextprotocol/server": ">=1.0.0",
"zod": ">=3.25.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"next": {
"optional": true
},
"@modelcontextprotocol/server": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-sns": "^3.1017.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"next": "^15.0.0",
"react": "^19.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0"
},
"keywords": [
"notifications",
"sms",
"push",
"email",
"twilio",
"sns",
"nextjs",
"messaging",
"mcp",
"claude-code",
"ai-coding",
"agent-friendly",
"sathergate-toolkit"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sathergate/herald"
},
"homepage": "https://github.com/sathergate/herald#readme",
"claude": {
"init": "npx notifykit init",
"mcp": true,
"category": "notifications",
"toolkit": {
"name": "sathergate-toolkit",
"repo": "https://github.com/sathergate/sathergate-toolkit",
"packages": [
"gatehouse",
"shutterbox",
"flagpost",
"ratelimit-next",
"notifykit",
"croncall",
"vaultbox",
"searchcraft"
]
}
}
}