-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.01 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@auth0/auth0-react-router",
"version": "1.0.0-beta.0",
"description": "Auth0 Authentication SDK for React Router applications",
"keywords": [
"auth0",
"react",
"react-router",
"authentication",
"authorization",
"oidc",
"oauth2",
"login"
],
"homepage": "https://github.com/auth0/auth0-react-router#readme",
"bugs": {
"url": "https://github.com/auth0/auth0-react-router/issues"
},
"license": "Apache-2.0",
"author": "Auth0",
"repository": {
"type": "git",
"url": "git://github.com/auth0/auth0-react-router.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./server": {
"browser": null,
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js",
"require": "./dist/server/index.cjs"
},
"./errors": {
"types": "./dist/errors/index.d.ts",
"import": "./dist/errors/index.js",
"require": "./dist/errors/index.cjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
},
"./testing": {
"types": "./dist/testing/index.d.ts",
"import": "./dist/testing/index.js",
"require": "./dist/testing/index.cjs"
}
},
"scripts": {
"build": "tsup",
"clean": "rm -rf ./dist",
"docs": "typedoc",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage",
"lint": "eslint src __tests__",
"lint:security": "eslint --no-config-lookup --config eslint.security.config.js src",
"typecheck": "tsc --noEmit",
"prepack": "npm run build"
},
"dependencies": {
"@auth0/auth0-api-js": "^1.6.1",
"@auth0/auth0-server-js": "^1.9.0",
"cookie": "^1.0.2"
},
"devDependencies": {
"@auth0/auth0-spa-js": "^2.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.0.0",
"eslint-plugin-security": "^3.0.0",
"happy-dom": "^20.10.6",
"prettier": "^3.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router": "^8.3.0",
"tsup": "^8.5.1",
"typedoc": "^0.28.0",
"typescript": "~5.9.3",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@auth0/auth0-spa-js": ">=2.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-router": ">=7.0.0"
},
"peerDependenciesMeta": {
"@auth0/auth0-spa-js": {
"optional": true
}
}
}