-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
{
"name": "@forgerock/davinci-client",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com:ForgeRock/forgerock-javascript-sdk.git",
"directory": "packages/davinci-client"
},
"sideEffects": ["./src/types.js"],
"type": "module",
"exports": {
".": "./dist/src/index.js",
"./types": "./dist/src/types.d.ts"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": ["dist", "!dist/tsconfig.lib.tsbuildinfo"],
"scripts": {
"lint": "pnpm nx nxLint",
"test": "pnpm nx nxTest",
"test:watch": "pnpm nx nxTest --watch"
},
"dependencies": {
"@forgerock/javascript-sdk": "4.7.0",
"@reduxjs/toolkit": "catalog:",
"immer": "catalog:"
},
"devDependencies": {
"vitest": "^3.0.4"
},
"publishConfig": {
"access": "public"
},
"nx": {
"tags": ["scope:package"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "packages/davinci-client/dist",
"main": "packages/davinci-client/src/index.ts",
"tsConfig": "packages/davinci-client/tsconfig.lib.json",
"generatePackageJson": false,
"assets": []
}
}
}
}
}