-
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) · 830 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 830 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": "@prsm/devtools",
"version": "1.0.2",
"description": "Read-only Express middleware dashboard for observing @prsm infrastructure at runtime",
"type": "module",
"exports": {
".": {
"default": "./src/index.js"
}
},
"files": [
"src",
"dist/client"
],
"scripts": {
"build:client": "cd client && npm run build",
"prepublishOnly": "npm run build:client"
},
"keywords": [
"devtools",
"dashboard",
"queue",
"cron",
"rate-limit",
"realtime",
"websocket",
"observability"
],
"license": "MIT",
"dependencies": {
"express": "^4.21.0"
},
"devDependencies": {
"@prsm/cron": "^1.0.3",
"@prsm/limit": "^1.1.1",
"@prsm/queue": "^3.0.8",
"cors": "^2.8.6",
"dotenv": "^16.4.7"
},
"engines": {
"node": ">=18"
}
}