-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.91 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.91 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
{
"name": "@nurbak/watch",
"version": "1.2.3",
"description": "Lightweight monitoring SDK for Next.js API routes and Server Actions",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"nurbak-watch": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"next": ">=13.4.0"
},
"license": "MIT",
"author": "Nurbak <support@nurbak.com> (https://nurbak.com)",
"homepage": "https://nurbak.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nurbak/nurbak-watch-nextjs.git"
},
"bugs": {
"url": "https://github.com/nurbak/nurbak-watch-nextjs/issues"
},
"keywords": [
"nextjs",
"next.js",
"api-monitoring",
"api monitoring",
"monitoring",
"uptime",
"uptime monitoring",
"observability",
"instrumentation",
"instrumentation.ts",
"vercel",
"serverless monitoring",
"api health check",
"health check",
"latency",
"p95",
"p99",
"error rate",
"api alerts",
"slack alerts",
"whatsapp alerts",
"datadog alternative",
"new relic alternative",
"apm",
"performance monitoring",
"api performance",
"endpoint monitoring",
"rest api monitoring",
"api gateway monitoring",
"cold start",
"mttd",
"incident detection",
"webhook monitoring",
"api error tracking",
"real-time alerts",
"devtools",
"developer tools"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"files": [
"dist",
"README.md"
]
}