-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.89 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.89 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
{
"name": "@kinde-oss/kinde-auth-react",
"version": "5.12.0",
"description": "Kinde React SDK for authentication",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./components": {
"types": "./dist/src/components/index.d.ts",
"import": "./dist/components.mjs",
"require": "./dist/components.cjs"
},
"./utils": {
"types": "./dist/src/utils/index.d.ts",
"import": "./dist/utils.mjs",
"require": "./dist/utils.cjs"
},
"./react-router": {
"types": "./dist/src/components/react-router-dom/index.d.ts",
"import": "./dist/react-router.mjs",
"require": "./dist/react-router.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"release": "release-it",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"dev:prepare": "rm -rf playground && git clone https://github.com/kinde-starter-kits/react-starter-kit playground && cd playground && printf \"overrides:\\n '@kinde-oss/kinde-auth-react': link:..\\n\" > pnpm-workspace.yaml && pnpm install && mv .env_sample .env && rm -rf .git",
"dev": "cd playground && npm start"
},
"author": {
"name": "Kinde",
"email": "engineering@kinde.com",
"url": "https://kinde.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-auth-react"
},
"bugs": "https://github.com/kinde-oss/kinde-auth-react",
"homepage": "https://kinde.com",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^10.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.0.0",
"@types/react": "19.2.15",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "10.4.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-react": "^7.37.4",
"globals": "^17.0.0",
"jsdom": "^29.0.0",
"prettier": "^3.5.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"release-it": "^20.0.0",
"typescript": "6.0.3",
"vite": "^8.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.0.0"
},
"keywords": [
"Kinde",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"React authentication"
],
"peerDependencies": {
"react": "^17 || ^18 || >=19.2.1",
"react-dom": "^17 || ^18 || >=19.2.1"
},
"files": [
"dist",
"src",
"LICENSE.md"
],
"private": false,
"dependencies": {
"@kinde/js-utils": "0.30.1"
},
"packageManager": "pnpm@10.34.1"
}