-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.51 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.51 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": "pdfx-cli",
"version": "0.6.1",
"description": "CLI for PDFx components",
"type": "module",
"bin": {
"pdfx": "./dist/index.js",
"pdfx-cli": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"test": "vitest run --passWithNoTests",
"lint": "biome check src/",
"typecheck": "tsc --noEmit",
"mcp:inspect": "pnpm dlx @modelcontextprotocol/inspector node dist/index.js mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dedent": "^1.6.0",
"execa": "^9.5.2",
"ora": "^8.1.1",
"posthog-node": "^5.30.4",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"typescript": "catalog:",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@pdfx/shared": "workspace:*",
"@types/node": "catalog:",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"rimraf": "^6.0.1",
"tsup": "^8.5.1",
"vitest": "catalog:"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": false
}
}