-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "@scribelabsai/amazon-trp",
"version": "4.1.1",
"description": "Amazon Textract Response Parser library for Node.",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": "./dist/index.js",
"sideEffects": false,
"scripts": {
"build:lib": "tsc",
"build:bin": "cd bin && tsc",
"message": "git config commit.template .gitmessage",
"check": "tsc --noEmit",
"test": "npx vitest run --logHeapUsage",
"coverage": "npm run test -- --coverage"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ScribeLabsAI/amazon-trp-node.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"aws-textract-parser",
"typescript",
"aws-textract",
"aws"
],
"author": "Emmanuel Hadoux <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ScribeLabsAI/amazon-trp-node/issues"
},
"homepage": "https://github.com/ScribeLabsAI/amazon-trp-node#readme",
"devDependencies": {
"@aws-sdk/client-textract": "^3.293.0",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-v8": "^1.0.4",
"dotenv": "^16.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.25.0",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-vitest": "^0.4.1",
"prettier": "^3.0.0",
"release-please": "^16.3.1",
"typescript": "^5.0.0",
"vitest": "^1.0.4"
},
"dependencies": {
"commander": "^12.0.0",
"zod": "^3.21.4"
}
}