-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"name": "@forgerock/oidc-client",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/ForgeRock/ping-javascript-sdk.git",
"directory": "packages/oidc-client"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/src/index.js",
"./package.json": "./package.json",
"./types": "./dist/src/types.d.ts"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "pnpm nx nxBuild",
"lint": "pnpm nx nxLint",
"test": "pnpm nx nxTest",
"test:watch": "pnpm nx nxTest --watch"
},
"dependencies": {
"@forgerock/iframe-manager": "workspace:*",
"@forgerock/sdk-logger": "workspace:*",
"@forgerock/sdk-oidc": "workspace:*",
"@forgerock/sdk-request-middleware": "workspace:*",
"@forgerock/sdk-types": "workspace:*",
"@forgerock/storage": "workspace:*",
"@reduxjs/toolkit": "catalog:",
"effect": "catalog:effect"
},
"devDependencies": {
"@effect/vitest": "catalog:effect",
"msw": "catalog:"
},
"nx": {
"tags": ["scope:package"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "packages/oidc-client/dist",
"main": "packages/oidc-client/src/index.ts",
"tsConfig": "packages/oidc-client/tsconfig.lib.json",
"generatePackageJson": false,
"assets": []
}
}
}
}
}