-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@will-cppa/pinecone-read-only-mcp",
"version": "0.5.0",
"description": "A Model Context Protocol (MCP) server that provides semantic search over Pinecone vector databases using hybrid search (dense + sparse) with reranking.",
"type": "module",
"main": "dist/core/index.js",
"module": "dist/core/index.js",
"types": "dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./alliance": {
"types": "./dist/alliance/index.d.ts",
"import": "./dist/alliance/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"pinecone-read-only-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"mcp",
"pinecone",
"rag",
"semantic-search",
"read-only",
"vector-database",
"model-context-protocol"
],
"author": "Will Pak <will@cppalliance.org>",
"license": "BSL-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cppalliance/pinecone-read-only-mcp-typescript.git"
},
"bugs": {
"url": "https://github.com/cppalliance/pinecone-read-only-mcp-typescript/issues"
},
"homepage": "https://github.com/cppalliance/pinecone-read-only-mcp-typescript#readme",
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"clean": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true});\"",
"build": "npm run clean && npx tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"smoke": "npm run build && node dist/index.js --help",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"benchmark": "tsx benchmarks/latency.ts",
"benchmark:smoke": "tsx benchmarks/latency.ts --smoke",
"test:search": "tsx scripts/test-search.ts",
"lint": "eslint src/ scripts/",
"lint:fix": "eslint src/ scripts/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.{mjs,ts}\" \"*.json\" \".prettierrc\"",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.{mjs,ts}\" \"*.json\" \".prettierrc\"",
"docs:link-check": "node scripts/docs-link-check.mjs",
"typecheck": "tsc --noEmit",
"typecheck:benchmarks": "tsc -p benchmarks/tsconfig.json",
"ci": "npm run typecheck && npm run typecheck:benchmarks && npm run lint && npm run format:check && npm run build && npm run benchmark:smoke && npm run test:coverage",
"release:check": "npm run ci && npm pack --dry-run --ignore-scripts",
"ci:local": "bash scripts/ci-local.sh",
"prepublishOnly": "npm run ci",
"prepack": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@pinecone-database/pinecone": "^8.0.0",
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/chai": "^5.2.3",
"@types/deep-eql": "^4.0.2",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"fast-check": "^4.8.0",
"prettier": "^3.5.3",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
}
}