-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
45 lines (45 loc) · 1006 Bytes
/
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
{
"name": "ollama-ocr",
"version": "0.0.2",
"description": "Implementing OCR with a local visual model run by ollama.",
"author": "bytefer",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/bytefer/ollama-ocr"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm --dts",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.9.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"dependencies": {
"ollama": "^0.5.10"
},
"engines": {
"node": ">=18"
}
}