-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.21 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
{
"name": "mindee",
"version": "5.6.1",
"description": "Mindee Client Library for Node.js",
"author": {
"name": "Mindee",
"email": "opensource@mindee.com",
"url": "https://mindee.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mindee/mindee-api-nodejs.git"
},
"bugs": {
"url": "https://github.com/mindee/mindee-api-nodejs/issues"
},
"homepage": "https://mindee.com/",
"type": "module",
"main": "src/index.js",
"bin": {
"mindeeV1": "bin/mindeeV1.js",
"mindeeV2": "bin/mindeeV2.js"
},
"scripts": {
"build": "tsc --build && tsc-alias",
"build:dist": "tsc --build && tsc-alias && cp LICENSE README.md CHANGELOG.md ./dist",
"clean": "rm -rf ./dist ./docs/_build",
"test": "node tests/runner.mjs spec",
"test:light": "node tests/runner.mjs spec",
"test:integration": "node tests/runner.mjs integration",
"test:integration:light": "node tests/runner.mjs integration",
"test:v2": "tsc --noEmit && node tests/runner.mjs spec v2",
"lint": "tsc --noEmit && eslint --report-unused-disable-directives './src/**/*.ts' './tests/**/*.ts'",
"lint:check": "npm run lint",
"lint:fix": "tsc --noEmit && eslint --fix --report-unused-disable-directives './src/**/*.ts' './tests/**/*.ts'",
"lint:package": "npm run build:dist && publint ./dist && attw --pack ./dist --profile esm-only",
"lint:secrets": "secretlint '**/*'",
"lint:full": "npm run lint:check && npm run lint:package && npm run lint:secrets",
"license:check": "license-checker-rseidelsohn --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;LGPL-3.0-or-later;Python-2.0;BlueOak-1.0.0;CC-BY-3.0;CC0-1.0;0BSD;LGPL-3.0-only;WTFPL;Artistic-2.0;Unlicense\"",
"docs": "typedoc --out docs/_build ./src/index.ts",
"docs:dist": "typedoc --out docs/_build ./src/index.ts && cp -r ./docs/code_samples ./docs/_build/",
"prepare": "husky"
},
"files": [
"src/*",
"bin/*",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">= 20.1"
},
"dependencies": {
"commander": "^14.0.3",
"file-type": "^21.3.4",
"tmp": "^0.2.7",
"undici": ">=6.24.0 <7.0.0 || >=7.24.0 <8.0.0"
},
"optionalDependencies": {
"@cantoo/pdf-lib": "^2.5.3",
"node-poppler": "^9.1.1",
"pdf.js-extract": "~0.2.1",
"sharp": "^0.35.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.4",
"@types/node": "^20.19.37",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^10.6.0",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-security": "^4.0.1",
"eslint-plugin-sonarjs": "^4.2.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"license-checker-rseidelsohn": "^4.4.2",
"publint": "^0.3.22",
"secretlint": "^13.0.4",
"tsc-alias": "^1.8.17",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^5.9.3"
},
"keywords": [
"typescript",
"mindee",
"api",
"client",
"client library",
"nodejs",
"sdk"
]
}