-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"name": "@regulaforensics/facesdk-webclient",
"version": "0.0.0",
"description": "JS client for facesdk web service",
"author": "Regula Forensics, Inc.",
"keywords": [
"face recognition",
"facesdk",
"regulaforensics",
"regula"
],
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"type": "module",
"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"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"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"
}
}