forked from passwordless-id/webauthn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "@passwordless-id/webauthn",
"version": "1.6.1",
"description": "A small wrapper around the webauthn protocol to make one's life easier.",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/webauthn.min.js",
"scripts": {
"build": "tsc && esbuild src/index.ts --platform=neutral --bundle --sourcemap --minify --target=es2022 --outfile=dist/webauthn.min.js",
"test": "jest",
"dev": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/passwordless-id/webauthn.git"
},
"keywords": [
"authentication",
"webauthn",
"passkeys",
"passwordless"
],
"author": "Arnaud Dagnelies",
"license": "MIT",
"bugs": {
"url": "https://github.com/passwordless-id/webauthn/issues"
},
"homepage": "https://webauthn.passwordless.id",
"devDependencies": {
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.2.3",
"esbuild": "^0.15.8",
"http-server": "^14.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.3"
}
}