-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 994 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
{
"name": "tesseract.ts",
"version": "1.1.2",
"description": "TypeScript wrapper for the tesseract.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "rm -rf dist && tsc -p ./ --outDir dist/"
},
"directories": {
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urakozz/tesseract.ts.git"
},
"keywords": [
"typescript",
"tesseract.js",
"tesseract.ts",
"tesseract",
"ts"
],
"author": "Yury Kozyrev <[email protected]> (urakozz.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/urakozz/tesseract.ts/issues"
},
"homepage": "https://github.com/urakozz/tesseract.ts#readme",
"dependencies": {
"@types/tesseract.js": "^0.0.2"
},
"devDependencies": {
"@types/node": "^12.6.2",
"tesseract.js": "^1.0.19"
},
"peerDependencies": {
"tesseract.js": "^1.0.10"
}
}