-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "@authsignal/browser",
"version": "1.4.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"authsignal",
"mfa",
"2fa",
"authentication",
"passkeys",
"webauthn",
"passwordless",
"fido2",
"biometrics",
"typescript"
],
"license": "MIT",
"repository": "git://github.com/authsignal/authsignal-browser.git",
"sideEffects": false,
"scripts": {
"typecheck": "tsc",
"clean": "rm -rf ./dist",
"lint": "eslint \"{cli,config,src,test}/**/*.ts\"",
"build": "rollup -c rollup.config.js"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^3.3.6",
"@simplewebauthn/browser": "^11.0.0",
"@simplewebauthn/types": "^11.0.0",
"a11y-dialog": "8.0.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.5.0",
"@types/iframe-resizer": "^3.5.9",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"tslib": "^2.4.0",
"typescript": "^5.6.2"
},
"files": [
"dist"
]
}