@descope/user-management-widget 0.0.0-next-0e292820-20250415

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "@descope/user-management-widget",
3
+ "version": "0.0.0-next-0e292820-20250415",
4
+ "author": "Descope Team <info@descope.com>",
5
+ "homepage": "https://github.com/descope/descope-js",
6
+ "bugs": {
7
+ "url": "https://github.com/descope/descope-js/issues",
8
+ "email": "help@descope.com"
9
+ },
10
+ "main": "dist/index.js",
11
+ "module": "dist/esm/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "description": "Descope user management widget",
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/descope/descope-js.git"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "devDependencies": {
23
+ "@descope/web-components-ui": "latest",
24
+ "@open-wc/rollup-plugin-html": "1.2.5",
25
+ "@playwright/test": "1.47.0",
26
+ "@rollup/plugin-commonjs": "^28.0.0",
27
+ "@rollup/plugin-node-resolve": "^15.0.0",
28
+ "@rollup/plugin-replace": "^5.0.0",
29
+ "@rollup/plugin-typescript": "^11.0.0",
30
+ "@testing-library/dom": "^10.0.0",
31
+ "@testing-library/jest-dom": "6.6.3",
32
+ "@types/jest": "^29.0.0",
33
+ "@types/node": "20.17.13",
34
+ "@types/testing-library__jest-dom": "5.14.9",
35
+ "dotenv": "^16.0.3",
36
+ "eslint": "8.57.1",
37
+ "eslint-config-airbnb": "19.0.4",
38
+ "eslint-config-airbnb-typescript": "18.0.0",
39
+ "eslint-config-prettier": "9.1.0",
40
+ "eslint-config-standard": "17.1.0",
41
+ "eslint-import-resolver-typescript": "3.6.1",
42
+ "eslint-plugin-import": "2.31.0",
43
+ "eslint-plugin-jest": "28.10.0",
44
+ "eslint-plugin-jest-dom": "5.4.0",
45
+ "eslint-plugin-jest-formatting": "3.1.0",
46
+ "eslint-plugin-n": "17.9.0",
47
+ "eslint-plugin-no-only-tests": "3.3.0",
48
+ "eslint-plugin-prefer-arrow": "1.2.3",
49
+ "eslint-plugin-prettier": "5.1.3",
50
+ "eslint-plugin-promise": "6.6.0",
51
+ "jest": "^29.0.0",
52
+ "jest-environment-jsdom": "^29.0.0",
53
+ "lint-staged": "^15.0.0",
54
+ "prettier": "^3.0.0",
55
+ "pretty-quick": "^4.0.0",
56
+ "rollup": "^4.0.0",
57
+ "rollup-plugin-banner2": "^1.2.2",
58
+ "rollup-plugin-browsersync": "^1.3.3",
59
+ "rollup-plugin-define": "^1.0.1",
60
+ "rollup-plugin-delete": "^2.0.0",
61
+ "rollup-plugin-dts": "^6.0.0",
62
+ "rollup-plugin-livereload": "^2.0.5",
63
+ "rollup-plugin-svg-import": "3.0.0",
64
+ "rollup-plugin-terser": "7.0.2",
65
+ "shadow-dom-testing-library": "^1.2.0",
66
+ "string-to-arraybuffer": "^1.0.2",
67
+ "ts-jest": "^29.0.0",
68
+ "ts-node": "10.9.2",
69
+ "typescript": "^5.0.2",
70
+ "serve": "14.2.4"
71
+ },
72
+ "dependencies": {
73
+ "tslib": "2.8.1",
74
+ "libphonenumber-js": "1.11.17",
75
+ "reselect": "5.1.1",
76
+ "@reduxjs/toolkit": "^2.0.1",
77
+ "redux": "5.0.1",
78
+ "redux-thunk": "3.1.0",
79
+ "immer": "^10.0.3",
80
+ "@descope/web-js-sdk": "0.0.0-next-0e292820-20250415",
81
+ "@descope/sdk-helpers": "0.0.0-next-0e292820-20250415",
82
+ "@descope/sdk-component-drivers": "0.0.0-next-0e292820-20250415",
83
+ "@descope/sdk-mixins": "0.0.0-next-0e292820-20250415"
84
+ },
85
+ "overrides": {
86
+ "terser": "5.37.0"
87
+ },
88
+ "scripts": {
89
+ "start": "npx nx run user-management-widget:build && rollup -c rollup.config.app.serve.mjs -w",
90
+ "build:app": "rollup -c rollup.config.app.mjs",
91
+ "build": "rollup -c",
92
+ "test": "npm run test:unit",
93
+ "test:unit": "jest --silent",
94
+ "test:e2e": "DESCOPE_PROJECT_ID=pid DESCOPE_TENANT=tid DESCOPE_WIDGET_ID=wid npm run build:app && npx playwright test",
95
+ "test:e2e:ui": "npm run test:e2e -- --ui",
96
+ "lint": "eslint '+(src|test)/**/*.ts'"
97
+ }
98
+ }