-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.17 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.17 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "client-side-ocr",
"private": false,
"version": "2.1.0",
"type": "module",
"description": "High-performance client-side OCR with ONNX Runtime, RapidOCR and PPU PaddleOCR integration. 100+ language support. Process text from images entirely in the browser with state-of-the-art accuracy and complete privacy.",
"author": {
"name": "Sivasubramanian Ramanathan",
"email": "[email protected]",
"url": "https://sivasub.com"
},
"homepage": "https://siva-sub.github.io/client-ocr/",
"repository": {
"type": "git",
"url": "git+https://github.com/siva-sub/client-ocr.git"
},
"bugs": {
"url": "https://github.com/siva-sub/client-ocr/issues"
},
"keywords": [
"ocr",
"onnx",
"onnxruntime",
"rapidocr",
"paddleocr",
"client-side",
"browser",
"text-recognition",
"text-detection",
"image-processing",
"multi-language",
"chinese-ocr",
"japanese-ocr",
"korean-ocr",
"pwa",
"typescript",
"react",
"ctc-decoding",
"db-algorithm"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.mjs",
"require": "./dist/react/index.js"
}
},
"files": [
"dist",
"!dist/models",
"!dist/*.html",
"!dist/*.webmanifest",
"!dist/sw.js",
"!dist/workbox-*.js",
"!dist/registerSW.js",
"!dist/vite.svg",
"README.npm.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:lib": "tsc -b && vite build --config vite.config.lib.ts",
"build:gh-pages": "tsc -b && vite build --config vite.config.gh-pages.ts",
"lint": "eslint .",
"preview": "vite preview",
"prepublishOnly": "npm run build:lib",
"type-check": "tsc --noEmit",
"deploy": "npm run build && gh-pages -d dist",
"prepublish": "cp README.npm.md README.md.bak && cp README.npm.md README.md",
"postpublish": "mv README.md.bak README.md",
"release": "npm run build:lib && npm publish"
},
"dependencies": {
"@mantine/code-highlight": "^8.2.1",
"@mantine/core": "^8.2.1",
"@mantine/dropzone": "^8.2.1",
"@mantine/hooks": "^8.2.1",
"@mantine/notifications": "^8.2.1",
"@tabler/icons-react": "^3.34.1",
"@techstark/opencv-js": "^4.11.0-release.1",
"onnxruntime-web": "^1.22.0",
"pdfjs-dist": "^5.3.93",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tesseract.js": "^6.0.1",
"vite-plugin-pwa": "^1.0.2",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"gh-pages": "^6.3.0",
"globals": "^16.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4",
"vite-plugin-dts": "^4.5.4"
}
}