-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.28 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
{
"name": "@ratchaw/extractkit",
"publishConfig": {
"access": "public"
},
"version": "0.1.0",
"description": "Schema-first document extraction with per-field provenance: Zod schema + PDF/image in, validated JSON with page, bbox, and confidence out.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RATCHAW/extractkit.git",
"directory": "packages/core"
},
"homepage": "https://github.com/RATCHAW/extractkit#readme",
"bugs": "https://github.com/RATCHAW/extractkit/issues",
"keywords": [
"document-extraction",
"ocr",
"zod",
"structured-output",
"pdf",
"invoice",
"receipt",
"ai-sdk"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=20.19"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"pdf-lib": "^1.17.1"
},
"peerDependencies": {
"ai": "^7.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^26.1.0",
"ai": "^7.0.16",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10",
"zod": "^4.4.3"
}
}