-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "docschema",
"version": "1.0.0",
"description": "Document schema extraction framework for regulated industries. Parse complex documents into versioned, comparable structured data with citation tracking and audit trails.",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "node --test test/*.test.js",
"lint": "eslint src/ test/",
"example": "node examples/basic-usage.js",
"example:schema": "node examples/custom-schema.js",
"example:compare": "node examples/document-comparison.js",
"example:register": "node examples/document-register.js"
},
"keywords": [
"document-extraction",
"schema-extraction",
"pdf-parsing",
"regulatory-compliance",
"legal-documents",
"pension-schemes",
"due-diligence",
"document-intelligence",
"llm",
"openai",
"azure",
"structured-data",
"version-control",
"audit-trail",
"citation-tracking",
"document-comparison"
],
"author": "Neil Page",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ThePagePage/docschema.git"
},
"bugs": {
"url": "https://github.com/ThePagePage/docschema/issues"
},
"homepage": "https://github.com/ThePagePage/docschema#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.56.0"
}
}