forked from bitwarden/passwordless-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "@passwordlessdev/passwordless-client",
"version": "0.3.1",
"main": "dist/passwordless.mjs",
"types": "dist/passwordless.d.ts",
"type": "module",
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/passwordless/passwordless-client-js.git"
},
"contributors": [
"Anders Åberg",
"David Fant"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.8.4"
},
"scripts": {
"dev": "tsc -w",
"build": "rimraf dist && tsc && rollup -c",
"prepare": "yarn build"
},
"description": "This library allows you to fast & without complexity add passwordless sign in (using fido2/webauthn) to your web application.",
"bugs": {
"url": "https://github.com/passwordless/passwordless-client-js/issues"
},
"homepage": "https://github.com/passwordless/passwordless-client-js#readme",
"license": "SEE LICENSE IN LICENCE.md"
}