-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 944 Bytes
/
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
{
"name": "@rmg-dev/pkce-utils",
"description": "A lightweight utility for implementing PKCE (Proof Key for Code Exchange) with Auth UI, designed for easy integration and secure OAuth flows",
"publishConfig": {
"access": "public"
},
"version": "1.0.4",
"main": "dist/pkce-utils.umd.js",
"module": "dist/pkce-utils.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"pkce",
"utils"
],
"author": "rmg.dev.br",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rmg-dev-br/pkce-utils.git"
},
"files": [
"dist/**/*",
"LICENSE"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"rollup": "^4.24.4",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^4.9.5"
}
}