-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "@laragear/webpass",
"version": "2.0.3",
"description": "The most simple WebAuthn (Passkeys) helper for browsers.",
"repository": {
"type": "git",
"url": "https://github.com/Laragear/webpass.git"
},
"bugs": {
"url": "https://github.com/Laragear/webpass/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/Laragear/webpass",
"main": "src/index.ts",
"scripts": {
"build": "rollup --config --sourcemap",
"dev": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"sideEffects": false,
"keywords": [
"webauthn",
"passkeys",
"authentication",
"auth",
"security",
"browser"
],
"author": {
"name": "Italo Israel Baeza Cabrera",
"email": "[email protected]",
"url": "https://github.com/DarkGhostHunter"
},
"type": "module",
"license": "MIT",
"dependencies": {
"ofetch": "^1.3.3",
"@simplewebauthn/browser": "^10.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/web": "^0.0.140",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.55.0",
"happy-dom": "^15.10.2",
"rollup": "^4.12.0",
"tslib": "^2.6.2",
"vitest": "^1.0.4"
},
"peerDependencies": {
"ofetch": "^1.3.3",
"typescript": "^5.3.3"
}
}