-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"name": "@regulaforensics/document-reader-webclient",
"version": "0.0.0",
"description": "Regula Document Reader js client for the browser and node.js based on axios",
"author": "Regula Forensics, Inc.",
"keywords": [
"document-reader-webclient",
"document reader",
"document recognition",
"regulaforensics",
"regula"
],
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com/regulaforensics/DocumentReader-api-js-client"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"check-types": "tsc --noEmit",
"format": "eslint --fix",
"build": "npm run check-types && vite build",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"axios": "^1.13.5",
"base64-arraybuffer": "^1.0.2",
"pako": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/pako": "^2.0.4",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
}
}