-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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": "one-time-pass",
"description": "Zero dependencies Node/Browser module for TOTP and HOTP generator based on RFC 6238 and RFC 4226",
"version": "1.0.7",
"author": "Haikel Fazzani",
"type": "module",
"browser": "dist/index.umd.js",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"build:types": "dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"dts-bundle-generator": "^9.5.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"files": [
"dist"
],
"license": "GPL-3.0-only",
"keywords": [
"one-time password",
"totp",
"hotp",
"otp",
"2fa"
],
"repository": "https://github.com/haikelfazzani/otp",
"bugs": "https://github.com/haikelfazzani/otp/issues",
"homepage": "https://github.com/haikelfazzani/otp#readme"
}