-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "@parseable/parseable-mcp-server",
"version": "0.2.4",
"description": "Model Context Protocol server for Parseable. Lets LLMs discover and query Parseable datasets.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"parseable-mcp-server": "dist/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check src test",
"format": "biome format --write src test",
"fix": "biome check --write src test",
"prepublishOnly": "npm run build && npm run lint && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.5",
"inquirer": "^13.4.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/inquirer": "^9.0.9",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.1.6",
"typescript": "^5.7.2",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}