-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "@frejun/oauth",
"version": "1.0.4",
"description": "FreJun OAuth 2.0 SDK — browser popup flow, token management, and event-driven token notifications",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"frejun",
"oauth",
"oauth2",
"authentication",
"tokens"
],
"license": "MIT",
"author": "Irfan Wani <irfan@frejun.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/frejun-tech/frejun-oauth-sdk.git"
},
"bugs": {
"url": "https://github.com/frejun-tech/frejun-oauth-sdk/issues"
},
"homepage": "https://github.com/frejun-tech/frejun-oauth-sdk#readme",
"devDependencies": {
"@types/node": "^25.5.0",
"rimraf": "^5.0.0",
"typescript": "^5.4.0"
}
}