-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 853 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
{
"name": "senitel",
"version": "1.0.0",
"description": "A protocol-layer query firewall that intercepts PostgreSQL wire messages to enforce per-client rate limits and block destructive SQL patterns before they reach any shard.",
"main": "dist/connection_plane/server/SentinelServer.js",
"scripts": {
"start": "npx ts-node --transpile-only src/connection_plane/server/SentinelServer.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aryan55254/Senitel.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aryan55254/Senitel/issues"
},
"homepage": "https://github.com/aryan55254/Senitel#readme",
"dependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/node": "^25.5.0"
}
}