-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.38 KB
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
49
50
51
{
"name": "@fajarhide/selat",
"version": "0.1.6",
"description": "The unified tool gateway for AI agents: one credential, every upstream, over MCP and REST.",
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "node --env-file-if-exists=.env --watch --experimental-strip-types src/main.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"quickstart": "node --env-file-if-exists=.env --experimental-strip-types scripts/quickstart.ts",
"check:google": "node --env-file-if-exists=.env --experimental-strip-types scripts/check-google-scopes.ts"
},
"dependencies": {
"@electric-sql/pglite": "^0.5.6",
"@modelcontextprotocol/sdk": "^1.12.0",
"express": "^5.0.0",
"pg": "^8.13.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"bin": {
"selat": "dist/src/main.js"
},
"files": [
"dist/src",
"migrations",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fajarhide/selat.git"
},
"homepage": "https://selat.dev",
"bugs": {
"url": "https://github.com/fajarhide/selat/issues"
}
}