-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 848 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 848 Bytes
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
{
"name": "@senzops/apm-node",
"version": "1.2.5",
"description": "Universal APM SDK for Senzor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./register": {
"types": "./dist/register.d.ts",
"require": "./dist/register.js",
"import": "./dist/register.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"
},
"keywords": [
"apm",
"monitoring",
"senzor",
"node",
"javascript",
"api",
"observability"
],
"author": "Senzops",
"license": "MIT"
}