-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.94 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
{
"name": "@zxkane/quip-mcp-server",
"version": "1.0.0",
"description": "MCP server for interacting with Quip spreadsheets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"quip-mcp-server": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config jest.e2e.config.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.922.0",
"@aws-sdk/client-secrets-manager": "^3.922.0",
"@aws-sdk/s3-request-presigner": "^3.922.0",
"@modelcontextprotocol/sdk": "^1.21.0",
"@types/axios": "^0.9.36",
"axios": "^1.13.2",
"cheerio": "^1.1.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"fs-extra": "^11.3.2",
"winston": "^3.18.3",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@cfworker/json-schema": "^4.1.1",
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.24",
"@types/rewire": "^2.5.30",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"rewire": "^9.0.1",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"mcp-server-streamable-http",
"quip",
"spreadsheet",
"csv"
],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}