-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "@shelf/aws-lambda-tesseract",
"version": "5.2.0",
"description": "6 MB Tesseract 4.1 (with English training data) to fit inside AWS Lambda",
"keywords": [
"aws",
"lambda",
"ocr",
"tesseract"
],
"repository": "shelfio/aws-lambda-tesseract",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "shelf.io"
},
"main": "lib",
"types": "lib/index.d.ts",
"files": [
"lib",
"bin/tt.tar.gz"
],
"scripts": {
"build": "rm -rf lib/ && yarn build:types && node esbuild.js",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "jest --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "TZ=UTC jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write --ignore-path=./.eslintignore"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"is-image": "4.0.0",
"tar": "7.4.3"
},
"devDependencies": {
"@shelf/eslint-config": "3.15.1",
"@shelf/prettier-config": "1.0.0",
"@swc/core": "1.7.11",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.14",
"@types/node": "18",
"@types/tar": "6.1.13",
"esbuild": "0.23.1",
"eslint": "8.57.1",
"husky": "9.1.4",
"jest": "29.7.0",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}