-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 842 Bytes
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
{
"name": "pagedrop",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"pagedrop": "src/index.ts"
},
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts",
"host": "tsx src/host/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"copy:renderer": "node scripts/clip.mjs apps-script/renderer.gs",
"copy:publisher": "node scripts/clip.mjs apps-script/publisher.gs",
"gen:secret": "node scripts/gen-secret.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"google-auth-library": "^9.0.0",
"googleapis": "^144.0.0",
"marked": "^12.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^4.1.9"
}
}