-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.77 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
71
72
73
74
{
"name": "@regulaforensics/document-reader-webclient",
"source": "src/index.ts",
"browserslist": [
"> 0.2%",
"not dead"
],
"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",
"repository": {
"type": "git",
"url": "[email protected]/regulaforensics/DocumentReader-api-js-client"
},
"exports": {
"import": "./dist/module/index.js",
"require": "./dist/main/index.cjs",
"types": "./lib/index.d.ts"
},
"main": "dist/main/index.cjs",
"module": "dist/module/index.js",
"type": "module",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"targets": {
"main": {
"optimize": true
},
"module": {
"optimize": true
}
},
"scripts": {
"check-types": "tsc --noEmit",
"format": "eslint --fix",
"build": "parcel build --no-source-maps --no-cache",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@swc/helpers": "^0.5.13",
"axios": "^1.7.7",
"base64-arraybuffer": "^1.0.2",
"pako": "^2.1.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"typescript": "^5.3.2"
}
}