-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1004 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
44
45
46
47
48
{
"name": "apiforgejs",
"version": "4.0.0",
"description": "API observability & intelligence SDK for Express.js — local-first, privacy-first",
"main": "src/index.js",
"keywords": [
"api",
"observability",
"monitoring",
"express",
"metrics",
"performance",
"analytics",
"middleware",
"latency",
"local-first"
],
"author": "APIForge",
"license": "MIT",
"scripts": {
"test": "node --test tests/**/*.test.js",
"test:smoke": "node --test tests/smoke.test.js",
"lint": "eslint ."
},
"engines": {
"node": ">=22.5.0"
},
"dependencies": {
"@babel/standalone": "^7.27.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/APIForge-Organisation/sdk-nodejs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"globals": "^16.5.0"
}
}