forked from dev-xo/remix-auth-totp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "@fluentforward/remix-auth-totp",
"version": "1.3.2",
"type": "module",
"description": "A Time-Based One-Time Password (TOTP) Authentication Strategy for Remix-Auth.",
"author": "Daniel Kanem <devxo@mail.com> (https://twitter.com/DanielKanem)",
"repository": "dev-xo/remix-auth-totp",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"remix",
"remix-run",
"remix-auth",
"remix-auth-totp",
"authentication",
"totp"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint --ext .ts,.tsx src/",
"typecheck": "tsc -b",
"format": "prettier --write .",
"test": "vitest --reporter verbose",
"test:cov": "vitest run --coverage",
"validate": "npm run lint && npm run typecheck && npx vitest --watch=false",
"prepare": "husky install",
"prepublishOnly": "npm run validate && npm run build"
},
"files": [
"dist",
"package.json",
"README.md"
],
"eslintIgnore": [
"/node_modules",
"/dist",
"/public/dist"
],
"dependencies": {
"@epic-web/totp": "^1.1.1",
"jsonwebtoken": "^9.0.2",
"thirty-two": "^1.0.2"
},
"peerDependencies": {
"remix-auth": "^3.6.0"
},
"devDependencies": {
"@remix-run/node": "^2.0.0",
"@remix-run/server-runtime": "^2.0.0",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "1.0.0-beta.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.0.0-beta.3"
}
}