-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.49 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
{
"name": "@senzops/apm-node",
"version": "1.3.7",
"description": "Universal APM SDK for Senzor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"worker": {
"types": "./dist/index.d.mts",
"default": "./dist/index.worker.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.node.mjs"
}
},
"./register": {
"require": {
"types": "./dist/register.d.ts",
"default": "./dist/register.js"
},
"import": {
"types": "./dist/register.d.mts",
"default": "./dist/register.node.mjs"
}
},
"./lambda-handler": {
"require": {
"types": "./dist/lambda-handler.d.ts",
"default": "./dist/lambda-handler.js"
},
"import": {
"types": "./dist/lambda-handler.d.mts",
"default": "./dist/lambda-handler.node.mjs"
}
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.19.41",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"keywords": [
"apm",
"monitoring",
"senzor",
"node",
"javascript",
"api",
"observability",
"cloudflare-workers",
"edge",
"universal"
],
"author": "Senzops",
"license": "MIT"
}