-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "native-browser-otp",
"version": "1.0.2",
"description": "Generate TOTP and HOTP with browser's native Web Cryptography.",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/g12i/native-browser-otp"
},
"homepage": "https://g12i.github.io/native-browser-otp/",
"main": "./dist/native-browser-otp.umd.js",
"module": "./dist/native-browser-otp.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/native-browser-otp.es.js",
"require": "./dist/native-browser-otp.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite --config vite.demo.config.js",
"build:demo": "vite build --config vite.demo.config.js && gh-pages -d demo/dist",
"build": "vite build && tsc --emitDeclarationOnly"
},
"keywords": [
"totp",
"hotp",
"native",
"browser",
"client"
],
"author": "Wojciech Grzebieniowski <[email protected]>",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"evergreen-ui": "^6.12.0",
"gh-pages": "^3.2.3",
"prettier": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qr-code": "^2.0.8",
"typescript": "^4.4.2",
"vite": "^2.5.6"
},
"dependencies": {
"base32-decode": "^1.0.0"
}
}