-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2 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
71
72
73
74
75
{
"name": "@ponjimon/remix-auth-webauthn",
"version": "0.1.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Ponjimon",
"url": "https://github.com/ponjimon"
},
"keywords": [
"remix",
"remix-run",
"remix-auth",
"authentication",
"webauthn",
"passkey",
"fido"
],
"description": "A WebAuthn Authentication Strategy for Remix Auth.",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint src/**/*.ts* --fix",
"typecheck": "tsc -b",
"format": "prettier --write .",
"test": "vitest --reporter verbose",
"test:coverage": "vitest --coverage",
"prepare": "husky install",
"changeset": "changeset",
"changeset:version": "pnpm exec changeset version",
"changeset:release": "pnpm run build && pnpm exec changeset publish"
},
"files": [
"dist",
"package.json",
"README.md"
],
"dependencies": {
"@simplewebauthn/server": "^7.2.0",
"tiny-invariant": "^1.3.1"
},
"peerDependencies": {
"@remix-run/server-runtime": "^1.14.3",
"remix-auth": "^3.4.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@remix-run/node": "^1.14.3",
"@remix-run/server-runtime": "^1.14.3",
"@simplewebauthn/typescript-types": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitest/coverage-c8": "^0.29.7",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.29.7"
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.0.0"
}