-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.3 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
78
79
80
81
82
83
84
85
86
87
{
"name": "ya-ocr",
"description": "An unofficial library to use Yandex OCR for free via Translation API",
"version": "1.1.1",
"author": "Toil",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/ya-ocr"
},
"bugs": {
"url": "https://github.com/FOSWLY/ya-ocr/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./consts": {
"require": "./dist/consts.js",
"import": "./dist/consts.js",
"types": "./dist/consts.d.ts"
},
"./types": {
"require": "./dist/types/index.js",
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./types/*": {
"require": "./dist/types/*.js",
"import": "./dist/types/*.js",
"types": "./dist/types/*.d.ts"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://github.com/FOSWLY/ya-ocr#readme",
"keywords": [
"ocr",
"yandex",
"foswly",
"ya-ocr",
"yaocr"
],
"devDependencies": {
"@eslint/js": "^9.21.0",
"@toil/typebox-genx": "^0.0.1",
"@types/bun": "latest",
"eslint": "^9.13.0",
"eslint-plugin-oxlint": "^0.15.7",
"husky": "^9.1.6",
"oxlint": "^0.15.7",
"tsc-alias": "^1.8.10",
"tsc-esm-fix": "^3.1.0",
"typedoc": "^0.27.9",
"typedoc-plugin-include-example": "^2.0.2",
"typedoc-plugin-inline-sources": "^1.1.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typescript-eslint": "^8.10.0"
},
"peerDependencies": {
"typescript": "^5.6.2"
},
"scripts": {
"test": "bun test",
"build:default": "tsc --project tsconfig.build.json --outdir ./dist && tsc-alias -p tsconfig.build.json && tsc-esm-fix --tsconfig tsconfig.build.json",
"build:doc": "typedoc --options typedoc.json --tsconfig tsconfig.build.json",
"build:bun": "bun run ./scripts/build.ts",
"build:all": "bun build:bun && bun build:doc",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
},
"dependencies": {
"@toil/translate": "^1.0.6",
"clipboardy": "^4.0.0",
"file-type": "^20.0.0"
}
}