-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"name": "esearch-ocr",
"version": "8.5.0",
"description": "paddleocr models run on onnx",
"main": "./dist/esearch-ocr.umd.cjs",
"module": "./dist/esearch-ocr.js",
"exports": {
".": {
"import": "./dist/esearch-ocr.js",
"require": "./dist/esearch-ocr.umd.cjs"
}
},
"homepage": "https://github.com/xushengfeng/eSearch-OCR",
"type": "module",
"types": "./src/main.ts",
"scripts": {
"test": "vite ",
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview"
},
"files": ["src/", "dist/", "package.json", "README.md"],
"keywords": ["ocr", "paddleocr", "onnx"],
"author": {
"name": "xsf",
"email": "xushengfeng_zg@163.com"
},
"license": "Apache-2.0",
"dependencies": {
"onnxruntime-common": "^1.22.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"typescript": "^5.8.3",
"vite": "^6.3.5"
}
}