-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"name": "@flarelabs-net/workers-observability-utils",
"version": "0.3.5",
"description": "A collection of Utilities for Capturing Logs and Metrics from Cloudflare Workers",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./metrics": {
"import": "./dist/metrics.js",
"types": "./dist/metrics.d.ts"
},
"./tail": {
"import": "./dist/tail.js",
"types": "./dist/tail.d.ts"
}
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"lint:fix": "biome lint --fix",
"release": "release-it"
},
"keywords": [
"cloudflare",
"workers",
"observability",
"metrics",
"logging"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.32",
"@cloudflare/workers-types": "^4.20250519.0",
"@types/node": "^22.15.19",
"biome": "^0.3.3",
"release-it": "^19.0.3",
"typescript": "^5.2.2",
"vitest": "^3.1.4"
},
"dependencies": {
"flat": "^6.0.1",
"ulid-workers": "^2.1.0"
},
"volta": {
"node": "24.4.0"
}
}