-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.05 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
{
"name": "@zitadel/react-auth",
"description": "A comprehensive authentication integration for React applications with TypeScript support, PKCE-based OIDC, and session management",
"version": "1.2.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js"
},
"./routes": {
"types": "./dist/routes.d.ts",
"import": "./dist/routes.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=24.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/zitadel/react-auth.git"
},
"author": {
"name": "Mridang Agarwalla",
"email": "mridang@zitadel.com",
"url": "https://github.com/zitadel"
},
"scripts": {
"prepack": "tsc",
"test": "npm run test:unit",
"test:unit": "jest --verbose --config=jest.config.mjs --runInBand --passWithNoTests",
"test:watch": "npm run test:unit -- --watch",
"typecheck": "tsc --noEmit",
"test:debug": "jest --verbose --config=jest.config.mjs --runInBand --detectOpenHandles",
"prepare": "npm run build",
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "npx eslint . --fix",
"depcheck": "npx knip",
"docs": "typedoc"
},
"peerDependencies": {
"oidc-client-ts": ">=3.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"react-router-dom": ">=6.0.0"
},
"peerDependenciesMeta": {
"react-router-dom": {
"optional": true
}
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@jest/globals": "^30.0.5",
"@mridang/eslint-defaults": "^1.6.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/react": "^16.1.0",
"@tsconfig/node24": "^24.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint": "^9.39.1",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"jest-junit": "^17.0.0",
"knip": "^5.66.4",
"oidc-client-ts": "^3.4.0",
"prettier": "^3.6.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"semantic-release": "^25.0.3",
"ts-jest": "29.4.11",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^6.0.0"
},
"keywords": [
"auth",
"authentication",
"authorization",
"authn",
"authz",
"oauth",
"oidc",
"jwt",
"jwks",
"pkce",
"react"
],
"private": false,
"homepage": "https://github.com/zitadel/react-auth",
"bugs": "https://github.com/zitadel/react-auth/issues",
"publishConfig": {
"access": "public"
}
}