-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@lo-fi/webauthn-local-client",
"description": "Browser-only utils for locally managing WebAuthn (passkey) API",
"version": "0.2000.0",
"exports": {
".": "./dist/bundlers/walc.mjs",
"./bundlers/astro": "./bundler-plugins/astro.mjs",
"./bundlers/vite": "./bundler-plugins/vite.mjs",
"./bundlers/webpack": "./bundler-plugins/webpack.mjs"
},
"browser": {
"@lo-fi/webauthn-local-client": "./dist/bundlers/walc.mjs"
},
"scripts": {
"build:all": "node scripts/build-all.js",
"build:gh-pages": "npm run build:all && node scripts/build-gh-pages.js",
"build": "npm run build:all",
"test:start": "npx http-server test/ -p 8080",
"test": "npm run test:start",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build:all"
},
"dependencies": {
"@root/asn1": "~1.0.2",
"cbor-js": "~0.1.0",
"libsodium": "~0.7.13",
"libsodium-wrappers": "~0.7.13"
},
"devDependencies": {
"micromatch": "~4.0.5",
"recursive-readdir-sync": "~1.0.6",
"terser": "~5.29.2"
},
"peerDependencies": {
"html-webpack-plugin": "~5.6.0"
},
"peerDependenciesMeta": {
"html-webpack-plugin": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mylofi/webauthn-local-client.git"
},
"keywords": [
"auth",
"passkey",
"webauthn",
"biometric",
"cryptography",
"vite-plugin",
"webpack-plugin"
],
"bugs": {
"url": "https://github.com/mylofi/webauthn-local-client/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mylofi/webauthn-local-client",
"author": "Kyle Simpson <[email protected]>",
"license": "MIT"
}