-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "@passwordlessdev/passwordless-client",
"version": "0.0.0",
"main": "dist/esm/passwordless.mjs",
"types": "dist/passwordless.d.ts",
"type": "module",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bitwarden/passwordless-client-js.git"
},
"license": "SEE LICENSE IN LICENSE.txt",
"homepage": "https://github.com/bitwarden/passwordless-client-js#readme",
"description": "This library allows you to to easily add passwordless sign in (using fido2/webauthn) to your web application.",
"bugs": {
"url": "https://github.com/bitwarden/passwordless-client-js/issues"
},
"contributors": [
"Anders Åberg",
"David Fant"
],
"scripts": {
"dev": "tsc -w",
"build": "rimraf dist && tsc && rollup -c",
"format": "prettier . --write && eslint \"**/*.{js,vue}\" --fix",
"format:check": "prettier . --check && eslint \"**/*.{js,vue}\"",
"test": "npx jest"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/jest": "29.5.14",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"rimraf": "6.0.1",
"rollup": "4.32.0",
"rollup-plugin-dts": "6.1.1",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.3"
}
}