-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
57
58
59
60
61
62
63
64
65
{
"name": "@zeeman-effect/plugin-pdf",
"version": "0.0.12",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "Maiar plugin that allows agents to interact with PDF files",
"keywords": [
"maiar",
"plugin",
"pdf",
"zeeman"
],
"author": "zeeman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zeeman-effect/plugin-pdf.git"
},
"bugs": {
"url": "https://github.com/zeeman-effect/plugin-pdf/issues"
},
"homepage": "https://github.com/zeeman-effect/plugin-pdf#readme",
"scripts": {
"build": "pnpm run clean && tsup src/index.ts --config tsup.config.ts",
"clean": "rm -rf dist",
"dev": "pnpm run build --watch",
"prepublishOnly": "pnpm run build"
},
"packageManager": "pnpm@10.4.1",
"dependencies": {
"@maiar-ai/core": "^0.9.0",
"better-sqlite3": "^11.8.1",
"pdfjs-dist": "^4.10.38",
"zod": "3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.5",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}