-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@docling/docling-core",
"version": "0.0.2",
"description": "TypeScript definitions and functions for using Docling output.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "npm run lint-code ; npm run lint-styles",
"lint:fix": "npm run lint-code -- --fix ; npm run lint-styles -- --fix",
"lint-code": "eslint .",
"lint-styles": "stylelint --ignore-path .gitignore '**/*.{css,scss,sass}'"
},
"keywords": [
"html",
"markdown",
"pdf",
"ai",
"convert",
"xlsx",
"pdf-converter",
"docx",
"documents",
"pptx",
"pdf-to-text",
"tables",
"document-parser",
"pdf-to-json",
"document-parsing"
],
"contributors": [
"Cesar Berrospi Ramis <[email protected]>",
"Valery Weber <[email protected]>",
"Peter Staar <[email protected]>",
"Christoph Auer <[email protected]>",
"Tiago Santana <[email protected]>",
"Michele Dolfi <[email protected]>",
"Kasper Dinkla <[email protected]>",
"Rafael Teixeira de Lima <[email protected]>",
"Panos Vagenas <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DS4SD/docling-ts.git"
},
"bugs": {
"url": "https://github.com/DS4SD/docling-ts/issues"
},
"homepage": "https://github.com/DS4SD/docling-ts/tree/main/docling-core",
"devDependencies": {
"@eslint/js": "9.18.0",
"@types/eslint__js": "8.42.3",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.14.0",
"json-schema-to-typescript": "^15.0.3",
"prettier": "3.4.2",
"stylelint": "16.13.0",
"stylelint-config-standard": "37.0.0",
"stylelint-prettier": "5.0.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "8.19.1",
"vitest": "^2.1.8"
}
}