-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "@scrive_ab/mcp",
"version": "0.5.1",
"description": "Model Context Protocol server that integrates with Scrive for document automation and e-signing.",
"keywords": [
"ai",
"documents",
"e-signing",
"llm",
"mcp",
"model-context-protocol",
"scrive"
],
"homepage": "https://github.com/scrive/mcp#readme",
"bugs": {
"url": "https://github.com/scrive/mcp/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/scrive/mcp.git"
},
"bin": {
"scrive-mcp": "dist/index.js"
},
"files": [
"dist/index.js"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "pnpm run build:ui && pnpm run build:server",
"build:server": "vite build",
"build:ui": "UI_APP=file-upload vite build --config src/ui/vite.config.ts && UI_APP=file-download vite build --config src/ui/vite.config.ts",
"check": "tsgo -p tsconfig.json",
"dev": "vite build --watch",
"fmt": "oxfmt",
"lint": "oxlint",
"test": "vitest run"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.7.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@napi-rs/keyring": "^1.3.0",
"express": "^5.2.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^24.5.2",
"@typescript/native-preview": "^7.0.0-dev",
"happy-dom": "^20.9.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"vite": "^7.3.5",
"vite-plugin-singlefile": "^2.3.2",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.5.0"
}