-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.81 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.81 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": "@rashidazarang/airtable-mcp",
"version": "4.0.1",
"description": "Advanced AI-powered Airtable MCP server with TypeScript support, intelligent analytics, predictive modeling, and enterprise automation capabilities",
"main": "dist/typescript/index.js",
"exports": {
".": {
"import": "./dist/typescript/index.js",
"require": "./dist/typescript/index.js",
"types": "./types/typescript/index.d.ts"
},
"./types": "./types/typescript/app/types.d.ts",
"./types/*": "./types/typescript/**/*.d.ts"
},
"bin": {
"airtable-mcp": "./bin/airtable-mcp.js",
"airtable-mcp-cli": "./bin/airtable-crud-cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"start": "node dist/typescript/airtable-mcp-server.js",
"start:dev": "ts-node src/typescript/airtable-mcp-server.ts",
"start:js": "node src/javascript/airtable_simple_production.js",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"test:types": "tsc --noEmit",
"lint": "eslint src/**/*.{js,ts}",
"lint:fix": "eslint src/**/*.{js,ts} --fix",
"format": "prettier --write \"src/**/*.{js,ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,json,md}\"",
"dev": "nodemon --watch src --exec ts-node src/typescript/airtable-mcp-server.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"airtable",
"mcp",
"claude",
"claude-desktop",
"anthropic",
"ai",
"database",
"typescript",
"automation",
"enterprise",
"analytics"
],
"files": [
"dist/",
"types/",
"bin/",
"README.md",
"LICENSE",
"package.json",
"tsconfig.json"
],
"types": "types/typescript/index.d.ts",
"author": "Rashid Azarang",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.0.0",
"zod": "^4.2.1",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-security": "^3.0.1",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rashidazarang/airtable-mcp"
},
"bugs": {
"url": "https://github.com/rashidazarang/airtable-mcp/issues"
},
"homepage": "https://github.com/rashidazarang/airtable-mcp#readme"
}