-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 900 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 900 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
43
{
"name": "@codebygarv/express-lens",
"version": "2.0.0",
"publishConfig": {
"access": "public"
},
"description": "A lightweight, plug-and-play monitoring package for Express.js applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "tsup index.js --format cjs,esm --clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"express",
"monitor",
"monitoring",
"metrics",
"dashboard",
"performance"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"express": "^4.22.2"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^6.0.3"
}
}