-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
93 lines (93 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@kinde-oss/kinde-auth-pkce-js",
"version": "4.2.2",
"description": "Kinde PKCE authentication for SPAs",
"module": "dist/kinde-auth-pkce-js.esm.js",
"main": "dist/kinde-auth-pkce-js.umd.min.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/kinde-auth-pkce-js.umd.min.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/kinde-auth-pkce-js.esm.js"
}
}
},
"scripts": {
"rollup": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"rollup:types": "rollup --config rollup.types.config.ts --configPlugin @rollup/plugin-typescript",
"build": "genversion --es6 src/utils/version.ts && npm run rollup && npm run rollup:types",
"test": "jest",
"watch": "npm run rollup -- --watch",
"prepare": "husky install",
"release": "release-it",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier -c .",
"prettier:write": "prettier -w .",
"dev:prepare": "git clone https://github.com/kinde-starter-kits/javascript-starter-kit playground && npm link && cd playground && mv .env.example .env && npm uninstall @kinde-oss/kinde-auth-pkce-js && rm -rf .git && npm link @kinde-oss/kinde-auth-pkce-js",
"dev": "cd playground && npm run dev"
},
"author": {
"name": "Kinde",
"email": "engineering@kinde.com",
"url": "https://kinde.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-auth-pkce-js"
},
"bugs": "https://github.com/kinde-oss/kinde-auth-pkce-js",
"homepage": "https://kinde.com",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"genversion": "^3.1.1",
"husky": "^7.0.0",
"jest": "^29.5.0",
"lint-staged": "^12.3.5",
"prettier": "^3.2.5",
"release-it": "^16.1.3",
"rollup": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.0.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2"
},
"keywords": [
"Kinde",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"SPA authentication"
],
"files": [
"dist",
"LICENSE.md"
],
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write .",
"eslint --fix ."
]
},
"private": false,
"dependencies": {
"jwt-decode": "^4.0.0"
}
}