-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.21 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
{
"name": "loginradius-sdk",
"version": "12.0.0-rc.1",
"description": "LoginRadius Node.js SDK (generated from the OpenAPI spec, fully typed)",
"keywords": [
"loginradius",
"ciam",
"identity",
"authentication",
"oauth",
"openid-connect",
"saml",
"mfa",
"sso",
"sdk"
],
"homepage": "https://github.com/LoginRadius/node-js-sdk#readme",
"bugs": {
"url": "https://github.com/LoginRadius/node-js-sdk/issues"
},
"license": "MIT",
"author": "LoginRadius",
"repository": {
"type": "git",
"url": "git+https://github.com/LoginRadius/node-js-sdk.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"MIGRATION_GUIDE.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && node scripts/postbuild-esm.mjs",
"clean": "rm -rf dist",
"lint": "eslint src",
"docs": "typedoc",
"lint:package": "publint",
"check:exports": "node scripts/check-dual-build.mjs",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"test": "jest",
"prepublishOnly": "npm run build && npm run lint:package && npm run check:exports"
},
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"@eslint/js": "^10.0.1",
"typescript-eslint": "^8.68.0",
"eslint": "^10.9.1",
"jest": "^30.4.2",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"ts-jest": "^29.4.12",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.13.0",
"typescript": "^5.9.3"
}
}