generated from domdomegg/typescript-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 KB
/
package.json
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
{
"name": "airtable-mcp-server",
"version": "1.3.0",
"description": "Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/airtable-mcp-server.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": "dist/index.js",
"scripts": {
"start": "npm run build && node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json && shx chmod +x dist/index.js",
"build:watch": "nodemon --watch src --ext ts --exec \"npm run build\"",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.3",
"node-fetch": "^3.3.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^22.10.2",
"eslint": "^8.57.0",
"eslint-config-domdomegg": "^1.2.3",
"nodemon": "^3.1.7",
"shx": "^0.3.4",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.7.2",
"vitest": "^1.4.0"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
],
"rules": {
"import/extensions": [
"error",
"always"
]
}
}
}