-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 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
52
{
"name": "@tigerdata/pg-aiguide",
"version": "0.4.1",
"description": "Comprehensive PostgreSQL documentation and best practices through semantic search and curated skills, including ecosystem tools like TimescaleDB and Tiger Cloud",
"license": "Apache-2.0",
"author": "TigerData",
"homepage": "https://tigerdata.com",
"repository": {
"type": "git",
"url": "https://github.com/timescale/pg-aiguide"
},
"mcpName": "io.github.timescale/pg-aiguide",
"type": "module",
"bin": {
"pg-aiguide": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && shx chmod +x dist/*.js",
"check": "./bun i --silent && ./bun run typecheck && ./bun run lint --write && ./bun run validate-skills && ./bun test --only-failures",
"inspector": "./bun x @modelcontextprotocol/inspector",
"lint": "biome check",
"validate-skills": "./bun scripts/validate-skills.ts",
"migrate": "migrate",
"prepublishOnly": "./bun run build",
"start": "./bun src/index.ts",
"typecheck": "tsc --noEmit",
"watch": "./bun --watch src/index.ts"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.80",
"@tigerdata/mcp-boilerplate": "1.3.2",
"ai": "^5.0.108",
"dotenv": "^17.2.3",
"gray-matter": "^4.0.3",
"migrate": "^2.1.0",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.10",
"@types/node": "^22.19.15",
"@types/pg": "^8.18.0",
"@types/semver": "^7.7.1",
"semver": "^7.7.4",
"shx": "^0.4.0",
"typescript": "^5.9.3"
}
}