-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "@forgerock/javascript-sdk",
"version": "4.9.0",
"description": "ForgeRock JavaScript SDK",
"author": "ForgeRock",
"license": "MIT",
"files": ["dist/*"],
"repository": {
"type": "git",
"url": "git+https://github.com:ForgeRock/forgerock-javascript-sdk.git",
"directory": "packages/javascript-sdk"
},
"bugs": {
"url": "https://github.com/ForgeRock/forgerock-javascript-sdk/issues"
},
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./device-client": {
"types": "./dist/device-client/device.store.d.ts",
"default": "./dist/device-client/device.store.js"
},
"./device-client/types": {
"types": "./dist/device-client/types/index.d.ts",
"default": "./dist/device-client/types/index.d.ts"
},
"./src/*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
}
}
},
"type": "module",
"dependencies": {
"@reduxjs/toolkit": "catalog:",
"immer": "catalog:"
},
"devDependencies": {
"@testing-library/react": "16.1.0",
"msw": "2.7.0",
"vitest": "^1.4.0"
}
}