forked from teamhanko/hanko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 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
63
64
65
66
67
68
69
70
{
"name": "@teamhanko/hanko-frontend-sdk",
"version": "1.1.0",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/sdk.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/sdk.modern.js"
}
},
"main": "./dist/sdk.cjs",
"module": "./dist/sdk.module.js",
"unpkg": "./dist/sdk.umd.js",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"format": "pretty-quick --staged",
"build": "microbundle --globals @github/webauthn-json=webauthnJson --tsconfig tsconfig.prod.json",
"dev": "microbundle watch",
"docs": "jsdoc -r -c jsdoc.json -d ./.generated/docs -R README.md --pedantic",
"test": "jest --coverage"
},
"description": "A package for simplifying UI integration with the Hanko API. It is meant for use in browsers only.",
"repository": "github:teamhanko/hanko",
"author": "Hanko GmbH <[email protected]>",
"license": "MIT",
"keywords": [
"hanko",
"passkey",
"webauthn",
"passcode",
"password",
"frontend",
"client",
"sdk"
],
"homepage": "https://hanko.io",
"devDependencies": {
"@github/webauthn-json": "^2.1.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"better-docs": "^2.7.2",
"eslint": "^8.52.0",
"eslint-config-google": "^0.14.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"js-cookie": "^3.0.5",
"jsdoc": "3.6.11",
"microbundle": "^0.15.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/js-cookie": "^3.0.3"
}
}