-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 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
{
"name": "docground",
"version": "0.1.3",
"description": "Extract with sight. Prove with math.",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prebuild": "node -e \"require('fs').rmSync('dist', {recursive:true, force:true})\"",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"generate:fixtures": "tsx scripts/generate_fixtures.ts"
},
"keywords": [
"document-extraction",
"visual-grounding",
"zod",
"structured-output",
"multimodal",
"pdf",
"typescript"
],
"author": "AlgorithmicMind",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AlgorithmicMind/docground.git"
},
"bugs": {
"url": "https://github.com/AlgorithmicMind/docground/issues"
},
"homepage": "https://github.com/AlgorithmicMind/docground#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/genai": "^2.19.0",
"openai": "^4.80.0",
"sharp": "^0.35.4",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"pdf-lib": "^1.17.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}