-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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": "@laragear/webpass",
"version": "2.1.2",
"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": "darkghosthunter@gmail.com",
"url": "https://github.com/DarkGhostHunter"
},
"type": "module",
"license": "MIT",
"dependencies": {
"@simplewebauthn/browser": "^13.0.0",
"ofetch": "^1.5.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/web": "^0.0.341",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"happy-dom": "^20.8.3",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"ofetch": "^1.5.1",
"typescript": "^5.9.3"
}
}