-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "@stackbilt/worker-observability",
"version": "0.1.0",
"description": "Edge-native observability for Cloudflare Workers. Health checks, structured logging, metrics, tracing, SLI/SLO monitoring, and alerting.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"cloudflare-workers",
"observability",
"monitoring",
"health-check",
"metrics",
"logging",
"tracing",
"sli",
"slo",
"alerting",
"edge",
"serverless"
],
"author": "Kurt Overmier <kurt@stackbilt.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Stackbilt-dev/worker-observability.git"
},
"bugs": {
"url": "https://github.com/Stackbilt-dev/worker-observability/issues"
},
"homepage": "https://github.com/Stackbilt-dev/worker-observability#readme",
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"typescript": "^5.3.2"
}
}