-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.44 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
{
"name": "@kinde-oss/kinde-auth-react",
"version": "4.0.4",
"description": "Kinde React SDK for authentication",
"module": "./dist/kinde-auth-react.esm.js",
"main": "./dist/kinde-auth-react.umd.min.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "genversion --es6 src/utils/version.ts && rollup -c",
"test": "jest",
"watch": "rollup -c -w",
"release": "release-it",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "prettier --write .",
"dev:prepare": "rm -rf playground && git clone https://github.com/kinde-starter-kits/react-starter-kit playground && npm link && cd playground && npm i && mv .env_sample .env && rm -rf .git && npm link @kinde-oss/kinde-auth-react",
"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": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "23.0.4",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.46.0",
"eslint": "8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"genversion": "^3.1.1",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"release-it": "^16.1.3",
"rollup": "^3.7.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "0.34.1",
"typescript": "4.9.4"
},
"keywords": [
"Kinde",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"React authentication"
],
"peerDependencies": {
"react": "^17.0.2 || ^18",
"react-dom": "^17.0.2 || ^18"
},
"files": [
"dist",
"src",
"LICENSE.md"
],
"private": false,
"dependencies": {
"@kinde-oss/kinde-auth-pkce-js": "^4.2.2"
},
"packageManager": "pnpm@8.14.1+sha256.2df78e65d433d7693b9d3fbdaf431b2d96bb4f96a2ffecd51a50efe16e50a6a8"
}