@descope/tenant-profile-widget 0.0.0-next-d3790478-20250722
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/LICENSE +21 -0
- package/README.md +101 -0
- package/dist/cjs/index.js +6 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/index.d.ts +1695 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/package.json +101 -0
package/package.json
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@descope/tenant-profile-widget",
|
|
3
|
+
"version": "0.0.0-next-d3790478-20250722",
|
|
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/cjs/index.js",
|
|
11
|
+
"module": "dist/esm/index.js",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"description": "Descope tenant profile 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.1.6",
|
|
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.14.3",
|
|
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
|
+
"reselect": "5.1.1",
|
|
75
|
+
"@reduxjs/toolkit": "^2.0.1",
|
|
76
|
+
"redux": "5.0.1",
|
|
77
|
+
"redux-thunk": "3.1.0",
|
|
78
|
+
"immer": "^10.0.3",
|
|
79
|
+
"@descope/web-js-sdk": "0.0.0-next-d3790478-20250722",
|
|
80
|
+
"@descope/web-component": "0.0.0-next-d3790478-20250722",
|
|
81
|
+
"@descope/sdk-helpers": "0.0.0-next-d3790478-20250722",
|
|
82
|
+
"@descope/sdk-mixins": "0.0.0-next-d3790478-20250722",
|
|
83
|
+
"@descope/sdk-component-drivers": "0.0.0-next-d3790478-20250722"
|
|
84
|
+
},
|
|
85
|
+
"optionalDependencies": {
|
|
86
|
+
"@descope/core-js-sdk": "0.0.0-next-d3790478-20250722"
|
|
87
|
+
},
|
|
88
|
+
"overrides": {
|
|
89
|
+
"terser": "5.37.0"
|
|
90
|
+
},
|
|
91
|
+
"scripts": {
|
|
92
|
+
"start": "npx nx run tenant-profile-widget:build && rollup -wc rollup.config.app.serve.mjs",
|
|
93
|
+
"build:app": "rollup -c rollup.config.app.mjs",
|
|
94
|
+
"build": "rollup -c",
|
|
95
|
+
"test": "npm run test:unit",
|
|
96
|
+
"test:unit": "jest --silent",
|
|
97
|
+
"test:e2e": "DESCOPE_PROJECT_ID=pid DESCOPE_TENANT_ID=tid DESCOPE_WIDGET_ID=wid npm run build:app && npx playwright test",
|
|
98
|
+
"test:e2e:ui": "npm run test:e2e -- --ui",
|
|
99
|
+
"lint": "eslint '+(src|test)/**/*.ts'"
|
|
100
|
+
}
|
|
101
|
+
}
|