-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
76
77
78
79
{
"name": "remix-auth-passwordless",
"version": "0.0.27",
"description": "Passwordless strategy for remix-auth",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/myleslinder/remix-auth-passwordless"
},
"homepage": "https://github.com/myleslinder/remix-auth-passwordless",
"sideEffects": false,
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc -b",
"update:check": "pnpm dlx taze",
"prepublishOnly": "pnpm run build"
},
"tsup": {
"entry": [
"src/index.ts"
],
"dts": true,
"splitting": false,
"sourcemap": false,
"format": [
"esm",
"cjs"
]
},
"dependencies": {
"crypto-js": "^4.1.1",
"nanoid": "^3.3.4"
},
"devDependencies": {
"@myleslinder/prettier-config": "^0.0.1",
"@remix-run/node": "^1.7.0",
"@remix-run/react": "^1.7.0",
"@remix-run/server-runtime": "*",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitest/coverage-c8": "^0.23.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.3.0",
"tsup": "^6.2.3",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vitest": "^0.22.1"
},
"peerDependencies": {
"@remix-run/server-runtime": "*",
"remix-auth": "^3.3.0"
},
"keywords": [],
"author": "Myles Linder",
"license": "MIT"
}