-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
76
77
{
"name": "markitdown-ts",
"version": "0.0.4",
"description": "",
"keywords": [],
"homepage": "https://github.com/dead8309/markitdown-ts#readme",
"bugs": {
"url": "https://github.com/dead8309/markitdown-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dead8309/markitdown-ts.git"
},
"license": "MIT",
"author": "Vaibhav Raj",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"format": "prettier --write src/**/*.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"preversion": "pnpm typecheck && pnpm build",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@ai-sdk/openai": "^1.0.11",
"@types/jsdom": "^21.1.7",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.2",
"@types/turndown": "^5.0.5",
"@types/unzipper": "^0.10.10",
"bumpp": "^9.9.1",
"is-ci": "^4.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.1",
"vite": "^6.0.4",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"dependencies": {
"@joplin/turndown-plugin-gfm": "^1.0.60",
"@xmldom/xmldom": "^0.9.6",
"jsdom": "^25.0.1",
"mammoth": "^1.8.0",
"mime-types": "^2.1.35",
"pdf-ts": "^0.0.2",
"turndown": "^7.2.0",
"xlsx": "^0.18.5",
"ai": "^4.0.22"
},
"peerDependencies": {
"youtube-transcript": "^1.2.1",
"unzipper": "^0.12.3"
},
"peerDependenciesMeta": {
"youtube-transcript": {
"optional": true
},
"unzipper": {
"optional": true
}
}
}