-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1021 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1021 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
{
"name": "scopeo",
"version": "1.0.1",
"description": "Scopeo SDK for monitoring Node.js applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/scopeo-tech/scopeo-package.git"
},
"homepage": "https://github.com/scopeo-tech/scopeo-package#readme",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"prepare": "npm run build",
"test": "echo \"No tests yet\""
},
"keywords": [
"scopeo",
"sdk",
"monitor",
"analytics",
"nodejs"
],
"author": "scopeo-tech",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.13.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/express": "^5.0.0",
"axios": "^1.7.9",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0"
}
}