@descope/vue-sdk
Advanced tools
Comparing version 0.0.0-next-fe60cdb6-20230614 to 0.0.0-next-ff580320-20240429
{ | ||
"name": "@descope/vue-sdk", | ||
"version": "0.0.0-next-fe60cdb6-20230614", | ||
"version": "0.0.0-next-ff580320-20240429", | ||
"main": "dist/index.cjs", | ||
@@ -9,4 +9,10 @@ "module": "dist/index.mjs", | ||
"exports": { | ||
"require": "./dist/index.cjs", | ||
"import": "./dist/index.mjs" | ||
"require": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.cjs" | ||
}, | ||
"import": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.mjs" | ||
} | ||
}, | ||
@@ -18,3 +24,3 @@ "types": "dist/index.d.ts", | ||
"scripts": { | ||
"start": "vue-cli-service serve", | ||
"start": "vue-cli-service serve --port 3000", | ||
"build": "rollup -m -c rollup.config.js", | ||
@@ -36,8 +42,15 @@ "test": "vue-cli-service test:unit", | ||
"dependencies": { | ||
"@descope/web-component": "2.0.17" | ||
"@descope/access-key-management-widget": "0.1.47", | ||
"@descope/audit-management-widget": "0.1.10", | ||
"@descope/role-management-widget": "0.1.45", | ||
"@descope/user-management-widget": "0.4.47", | ||
"@descope/user-profile-widget": "0.0.11", | ||
"@descope/web-component": "3.11.5" | ||
}, | ||
"peerDependencies": { | ||
"@descope/web-js-sdk": "1.2.8", | ||
"vue": ">=3" | ||
}, | ||
"optionalDependencies": { | ||
"@descope/web-js-sdk": ">=1.10.24" | ||
}, | ||
"devDependencies": { | ||
@@ -63,2 +76,3 @@ "@rollup/plugin-typescript": "^11.1.0", | ||
"jest": "^27.0.5", | ||
"jest-fetch-mock": "^3.0.3", | ||
"lint-staged": "^13.0.3", | ||
@@ -82,3 +96,6 @@ "prettier": "^2.4.1", | ||
"vue-router": "^4.1.6" | ||
}, | ||
"overrides": { | ||
"semver": "7.5.2" | ||
} | ||
} |
357
README.md
@@ -1,4 +0,5 @@ | ||
# Descope SDK for Vue | ||
# Descope Vue SDK | ||
The Descope SDK for Vue provides convenient access to the Descope for an application written on top of Vue. You can read more on the [Descope Website](https://descope.com). | ||
The Descope Vue SDK provides convenient access to the Descope for an application written on top of Vue. | ||
You can read more on the [Descope Website](https://descope.com). | ||
@@ -20,6 +21,4 @@ ## Requirements | ||
### Render it in your application | ||
### Add Descope plugin to your application | ||
#### Add Descope plugin to your application | ||
```js | ||
@@ -41,11 +40,23 @@ import { createApp } from 'vue'; | ||
#### Use Descope to render specific flow | ||
### Use Descope to render specific flow | ||
```js | ||
```vue | ||
<template> | ||
<p v-if="isFlowLoading">Loading...</p> | ||
<Descope | ||
flowId="sign-up-or-in" | ||
flowId="my-flow-id" | ||
@success="handleSuccess" | ||
@error="handleError" | ||
@success="handleSuccess" | ||
@ready="handleReady" | ||
/> | ||
<!-- additional props --> | ||
<!-- theme="dark" theme can be "light", "dark" or "os", which auto select a theme based on the OS theme. Default is "light" --> | ||
<!-- v-bind:debug="true" debug can be set to true to enable debug mode --> | ||
<!-- locale="en" locale can be any supported locale which the flow's screen translated to, if not provided, the locale is taken from the browser's locale. --> | ||
<!-- tenant="tenantId" tenant ID for SSO (SAML) login. If not provided, Descope will use the domain of available email to choose the tenant --> | ||
<!-- redirectUrl="redirectUrl" Redirect URL for OAuth and SSO (will be used when redirecting back from the OAuth provider / IdP), or for "Magic Link" and "Enchanted Link" (will be used as a link in the message sent to the the user) --> | ||
<!-- autoFocus="skipFirstScreen" autoFocus can be true, false or "skipFirstScreen". Default is true. - true: automatically focus on the first input of each screen - false: do not automatically focus on screen's inputs - "skipFirstScreen": automatically focus on the first input of each screen, except first screen --> | ||
<!-- errorTransformer="errorTransformer" errorTransformer is a function that receives an error object and returns a string. The returned string will be displayed to the user. NOTE: errorTransformer is not required. If not provided, the error object will be displayed as is. --> | ||
<!-- form="{ email: 'test@domain.com' }" form is an object the initial form context that is used in screens inputs in the flow execution. Used to inject predifined input values on flow start such as custom inputs, custom attrbiutes and other inputs. Keys passed can be accessed in flows actions, conditions and screens prefixed with "form.". NOTE: form is not required. If not provided, 'form' context key will be empty before user input. --> | ||
<!-- client="{ version: '1.2.3' }" client is an object the initial client context in the flow execution. Keys passed can be accessed in flows actions and conditions prefixed with "client.". NOTE: client is not required. If not provided, context key will be empty. --> | ||
</template> | ||
@@ -55,14 +66,31 @@ | ||
import { Descope } from '@descope/vue-sdk'; | ||
import { ref } from 'vue'; | ||
const isFlowLoading = ref(true); | ||
const handleSuccess = (e) => { | ||
console.log('Logged in!', e); | ||
}; | ||
const handleError = (e) => { | ||
console.log('Got error', e); | ||
console.log('Could not log in', e); | ||
}; | ||
const handleSuccess = (e) => { | ||
console.log('Logged in', e); | ||
const handleReady = () => { | ||
isFlowLoading.value = false; | ||
}; | ||
// let tenantId = '<tenantId>'; // replace with your tenant ID | ||
// let redirectUrl = '<redirectUrl>'; // replace with your redirect URL | ||
// const errorTransformer = (error) => { | ||
// const translationMap = { | ||
// SAMLStartFailed: 'Failed to start SAML flow' | ||
// }; | ||
// return translationMap[error.type] || error.text; | ||
// }; | ||
</script> | ||
``` | ||
#### Use the `useDescope`, `useSession` and `useUser` functions in your components in order to get authentication state, user details and utilities | ||
### Use the `useDescope`, `useSession` and `useUser` functions in your components in order to get authentication state, user details and utilities | ||
@@ -88,3 +116,3 @@ This can be helpful to implement application-specific logic. Examples: | ||
<script setup> | ||
import { useDescope, useSession, useUser } from '../../src'; | ||
import { useDescope, useSession, useUser } from '@descope/vue-sdk'; | ||
@@ -101,4 +129,99 @@ const { isAuthenticated, isSessionLoading } = useSession(); | ||
#### Refresh token lifecycle | ||
### Session token server validation (pass session token to server API) | ||
When developing a full-stack application, it is common to have private server API which requires a valid session token: | ||
![session-token-validation-diagram](https://docs.descope.com/static/SessionValidation-cf7b2d5d26594f96421d894273a713d8.png) | ||
Note: Descope also provides server-side SDKs in various languages (NodeJS, Go, Python, etc). Descope's server SDKs have out-of-the-box session validation API that supports the options described bellow. To read more about session validation, Read [this section](https://docs.descope.com/build/guides/gettingstarted/#session-validation) in Descope documentation. | ||
There are 2 ways to achieve that: | ||
1. Using `getSessionToken` to get the token, and pass it on the `Authorization` Header (Recommended) | ||
2. Passing `sessionTokenViaCookie` boolean option when initializing the plugin (Use cautiously, session token may grow, especially in cases of using authorization, or adding custom claim) | ||
#### 1. Using `getSessionToken` to get the token | ||
An example for api function, and passing the token on the `Authorization` header: | ||
```js | ||
import { getSessionToken } from '@descope/vue-sdk'; | ||
// fetch data using back | ||
// Note: Descope backend SDKs support extracting session token from the Authorization header | ||
export const fetchData = async () => { | ||
const sessionToken = getSessionToken(); | ||
const res = await fetch('/path/to/server/api', { | ||
headers: { | ||
Authorization: `Bearer ${sessionToken}` | ||
} | ||
}); | ||
// ... use res | ||
}; | ||
``` | ||
#### 2. Passing `sessionTokenViaCookie` option when initializing the plugin | ||
When doing so, Descope SDK will automatically store session token on the `DS` cookie. | ||
Note: Use this option if session token will stay small (less than 1k). Session token can grow, especially in cases of using authorization, or adding custom claims | ||
Example: | ||
```js | ||
import { createApp } from 'vue'; | ||
import App from './components/App.vue'; | ||
import descope from '@descope/vue-sdk'; | ||
const app = createApp(App); | ||
app.use(descope, { | ||
projectId: 'project-id', | ||
sessionTokenViaCookie: true | ||
}); | ||
``` | ||
Now, whenever you call `fetch`, the cookie will automatically be sent with the request. | ||
Descope backend SDKs also support extracting the token from the `DS` cookie. | ||
### Get the Descope SDK instance | ||
In case you need the SDK instance outside the Vue application, you can use the `getSdk` function | ||
**Make sure to call it only after initializing the descope plugin, this is where the SDK instance is actually created, otherwise you will no instance.** | ||
For example: | ||
```js | ||
import { createApp } from 'vue'; | ||
import App from './components/App.vue'; | ||
import descope, { getSdk } from '../src'; | ||
const app = createApp(App); | ||
app.use(descope, { | ||
projectId: 'project-id' | ||
}); | ||
const sdk = getSdk(); | ||
sdk?.onSessionTokenChange((newSession) => { | ||
// here you can implement custom logic when the session is changing | ||
}); | ||
``` | ||
### Helper Functions | ||
You can also use the following functions to assist with various actions managing your JWT. | ||
`getSessionToken()` - Get current session token. | ||
`getRefreshToken()` - Get current refresh token. | ||
`refresh(token = getRefreshToken())` - Force a refresh on current session token using an existing valid refresh token. | ||
`isSessionTokenExpired(token = getSessionToken())` - Check whether the current session token is expired. Provide a session token if is not persisted. | ||
`isRefreshTokenExpired(token = getRefreshToken())` - Check whether the current refresh token is expired. Provide a refresh token if is not persisted. | ||
`getJwtRoles(token = getSessionToken(), tenant = '')` - Get current roles from an existing session token. Provide tenant id for specific tenant roles. | ||
`getJwtPermissions(token = getSessionToken(), tenant = '')` - Fet current permissions from an existing session token. Provide tenant id for specific tenant permissions. | ||
### Refresh token lifecycle | ||
Descope SDK is automatically refreshes the session token when it is about to expire. This is done in the background using the refresh token, without any additional configuration. | ||
@@ -109,9 +232,179 @@ | ||
### Token Persistence | ||
Descope stores two tokens: the session token and the refresh token. | ||
- The refresh token is either stored in local storage or an `httpOnly` cookie. This is configurable in the Descope console. | ||
- The session token is stored in either local storage or a JS cookie. This behavior is configurable via the `sessionTokenViaCookie` prop in the Descope plugin. | ||
However, for security reasons, you may choose not to store tokens in the browser. In this case, you can pass `persistTokens: false` to the Descope plugin. This prevents the SDK from storing the tokens in the browser. | ||
Notes: | ||
- You must configure the refresh token to be stored in an `httpOnly` cookie in the Descope console. Otherwise, the refresh token will not be stored, and when the page is refreshed, the user will be logged out. | ||
- You can still retrieve the session token using the `useSession` hook. | ||
### Last User Persistence | ||
Descope stores the last user information in local storage. If you wish to disable this feature, you can pass `storeLastAuthenticatedUser: false` to the Descope plugin. Please note that some features related to the last authenticated user may not function as expected if this behavior is disabled. | ||
### Widgets | ||
Widgets are components that allow you to expose management features for tenant-based implementation. In certain scenarios, your customers may require the capability to perform managerial actions independently, alleviating the necessity to contact you. Widgets serve as a feature enabling you to delegate these capabilities to your customers in a modular manner. | ||
Important Note: | ||
- For the user to be able to use the widget, they need to be assigned the `Tenant Admin` Role. | ||
#### User Management | ||
The `UserManagement` widget lets you embed a user table in your site to view and take action. | ||
The widget lets you: | ||
- Create a new user | ||
- Edit an existing user | ||
- Activate / disable an existing user | ||
- Reset an existing user's password | ||
- Remove an existing user's passkey | ||
- Delete an existing user | ||
Note: | ||
- Custom fields also appear in the table. | ||
###### Usage | ||
```vue | ||
<template> | ||
<UserManagement tenant="tenant-id" widget-id="user-management-widget" /> | ||
</template> | ||
<script setup> | ||
import { UserManagement } from '@descope/vue-sdk'; | ||
</script> | ||
``` | ||
Example: | ||
[Manage Users](./example/components/ManageUsers.vue) | ||
#### Role Management | ||
The `RoleManagement` widget lets you embed a role table in your site to view and take action. | ||
The widget lets you: | ||
- Create a new role | ||
- Change an existing role's fields | ||
- Delete an existing role | ||
Note: | ||
- The `Editable` field is determined by the user's access to the role - meaning that project-level roles are not editable by tenant level users. | ||
- You need to pre-define the permissions that the user can use, which are not editable in the widget. | ||
###### Usage | ||
```vue | ||
<template> | ||
<RoleManagement tenant="tenant-id" widget-id="role-management-widget" /> | ||
</template> | ||
<script setup> | ||
import { RoleManagement } from '@descope/vue-sdk'; | ||
</script> | ||
``` | ||
Example: | ||
[Manage Roles](./example/components/ManageRoles.vue) | ||
#### Access Key Management | ||
The `AccessKeyManagement` widget lets you embed an access key table in your site to view and take action. | ||
The widget lets you: | ||
- Create a new access key | ||
- Activate / deactivate an existing access key | ||
- Delete an exising access key | ||
###### Usage | ||
```vue | ||
<template> | ||
<!-- admin view: manage all tenant users' access keys --> | ||
<AccessKeyManagement | ||
tenant="tenant-id" | ||
widget-id="access-key-management-widget" | ||
/> | ||
<!-- user view: mange access key for the logged-in tenant's user --> | ||
<AccessKeyManagement | ||
tenant="tenant-id" | ||
widget-id="user-access-key-management-widget" | ||
/> | ||
</template> | ||
<script setup> | ||
import { AccessKeyManagement } from '@descope/vue-sdk'; | ||
</script> | ||
``` | ||
Example: | ||
[Manage Access Keys](./example/components/ManageAccessKeys.vue) | ||
#### Audit Management | ||
The `AuditManagement` widget lets you embed an audit table in your site. | ||
###### Usage | ||
```vue | ||
<template> | ||
<AuditManagement tenant="tenant-id" widget-id="audit-management-widget" /> | ||
</template> | ||
<script setup> | ||
import { AuditManagement } from '@descope/vue-sdk'; | ||
</script> | ||
``` | ||
Example: | ||
[Manage Audit](./example/components/ManageAudit.vue) | ||
#### User Profile | ||
The `UserProfile` widget lets you embed a user profile component in your app and let the logged in user update his profile. | ||
The widget lets you: | ||
- Update user profile picture | ||
- Update user personal information | ||
- Update authentication methods | ||
- Logout | ||
###### Usage | ||
```vue | ||
<template> | ||
<UserProfile widget-id="user-profile-widget" @logout="onLogout" /> | ||
</template> | ||
<script setup> | ||
import { UserProfile } from '@descope/vue-sdk'; | ||
const onLogout = () => (window.location.href = '/login'); | ||
</script> | ||
``` | ||
Example: | ||
[User Profile](./example/components/MyUserProfile.vue) | ||
## Code Example | ||
You can find an example Vue app in the [examples folder](./example). | ||
You can find an example Vue app in the [example folder](./example). | ||
### Setup | ||
To run the examples, set your `Project ID` by setting the `DESCOPE_PROJECT_ID` env var or directly | ||
To run the examples, set your `Project ID` by setting the `VUE_APP_DESCOPE_PROJECT_ID` env var or directly | ||
in the sample code. | ||
@@ -135,2 +428,4 @@ Find your Project ID in the [Descope console](https://app.descope.com/settings/project). | ||
Open your browser and navigate to [http://localhost:3000](http://localhost:3000). | ||
### Example Optional Env Variables | ||
@@ -140,8 +435,7 @@ | ||
| Env Variable | Description | Default value | | ||
| ------------ | ----------- | ------------- | | ||
| Env Variable | Description | Default value | | ||
| ------------------------ | -------------------------------------- | ----------------- | | ||
| VUE_APP_DESCOPE_FLOW_ID | Which flow ID to use in the login page | **sign-up-or-in** | | ||
| VUE_APP_DESCOPE_BASE_URL | Custom Descope base URL | None | | ||
| VUE_APP_DESCOPE_FLOW_ID | Which flow ID to use in the login page | **sign-up-or-in** | | ||
| VUE_APP_DESCOPE_BASE_URL | Custom Descope base URL | None | | ||
Example for `.env.local` file template: | ||
@@ -158,2 +452,21 @@ | ||
## Q & A | ||
### I updated the user in my backend, but the user / session token are not updated in the frontend | ||
// adjust the answer to vue sdk | ||
The Descope SDK caches the user and session token in the frontend. If you update the user in your backend (using Descope Management SDK/API for example), you can call `me` / `refresh` from `useDescope` hook to refresh the user and session token. Example: | ||
```js | ||
const sdk = useDescope(); | ||
const handleUpdateUser = () => { | ||
myBackendUpdateUser().then(() => { | ||
sdk.me(); | ||
// or | ||
sdk.refresh(); | ||
}); | ||
}; | ||
``` | ||
## Learn More | ||
@@ -160,0 +473,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
275463
4840
474
8
38
1
+ Added@descope/access-key-management-widget@0.1.47(transitive)
+ Added@descope/audit-management-widget@0.1.10(transitive)
+ Added@descope/core-js-sdk@2.14.12.33.0(transitive)
+ Added@descope/role-management-widget@0.1.45(transitive)
+ Added@descope/sdk-component-drivers@0.2.3(transitive)
+ Added@descope/sdk-helpers@0.1.22(transitive)
+ Added@descope/sdk-mixins@0.2.4(transitive)
+ Added@descope/user-management-widget@0.4.47(transitive)
+ Added@descope/user-profile-widget@0.0.11(transitive)
+ Added@descope/web-component@3.11.5(transitive)
+ Added@descope/web-js-sdk@1.10.371.23.1(transitive)
+ Added@fingerprintjs/fingerprintjs-pro@3.9.33.9.9(transitive)
+ Added@reduxjs/toolkit@2.5.0(transitive)
+ Addedimmer@10.1.1(transitive)
+ Addedjwt-decode@4.0.0(transitive)
+ Addedlibphonenumber-js@1.10.581.10.59(transitive)
+ Addedredux@5.0.1(transitive)
+ Addedredux-thunk@3.1.0(transitive)
+ Addedreselect@5.1.0(transitive)
+ Addedtslib@2.6.22.6.3(transitive)
- Removed@babel/runtime@7.26.0(transitive)
- Removed@descope/core-js-sdk@1.0.121.3.8(transitive)
- Removed@descope/web-component@2.0.17(transitive)
- Removed@descope/web-js-sdk@1.0.111.2.8(transitive)
- Removed@eslint-community/eslint-utils@4.4.1(transitive)
- Removed@eslint-community/regexpp@4.12.1(transitive)
- Removed@eslint/eslintrc@2.1.4(transitive)
- Removed@eslint/js@8.57.1(transitive)
- Removed@fingerprintjs/fingerprintjs-pro@3.8.23.8.3(transitive)
- Removed@humanwhocodes/config-array@0.13.0(transitive)
- Removed@humanwhocodes/module-importer@1.0.1(transitive)
- Removed@humanwhocodes/object-schema@2.0.3(transitive)
- Removed@nodelib/fs.scandir@2.1.5(transitive)
- Removed@nodelib/fs.stat@2.0.5(transitive)
- Removed@nodelib/fs.walk@1.2.8(transitive)
- Removed@ungap/structured-clone@1.2.1(transitive)
- Removedacorn@8.14.0(transitive)
- Removedacorn-jsx@5.3.2(transitive)
- Removedajv@6.12.6(transitive)
- Removedansi-regex@5.0.1(transitive)
- Removedansi-styles@4.3.0(transitive)
- Removedargparse@2.0.1(transitive)
- Removedaria-query@5.3.2(transitive)
- Removedarray-buffer-byte-length@1.0.2(transitive)
- Removedarray-includes@3.1.8(transitive)
- Removedarray.prototype.flat@1.3.3(transitive)
- Removedarray.prototype.flatmap@1.3.3(transitive)
- Removedarraybuffer.prototype.slice@1.0.4(transitive)
- Removedast-types-flow@0.0.7(transitive)
- Removedavailable-typed-arrays@1.0.7(transitive)
- Removedaxe-core@4.10.2(transitive)
- Removedaxobject-query@3.2.4(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedcall-bind@1.0.8(transitive)
- Removedcall-bind-apply-helpers@1.0.1(transitive)
- Removedcall-bound@1.0.3(transitive)
- Removedcallsites@3.1.0(transitive)
- Removedchalk@4.1.2(transitive)
- Removedcolor-convert@2.0.1(transitive)
- Removedcolor-name@1.1.4(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removedcross-spawn@7.0.6(transitive)
- Removeddamerau-levenshtein@1.0.8(transitive)
- Removeddata-view-buffer@1.0.2(transitive)
- Removeddata-view-byte-length@1.0.2(transitive)
- Removeddata-view-byte-offset@1.0.1(transitive)
- Removeddebug@4.4.0(transitive)
- Removeddeep-is@0.1.4(transitive)
- Removeddefine-data-property@1.1.4(transitive)
- Removeddefine-properties@1.2.1(transitive)
- Removeddoctrine@3.0.0(transitive)
- Removeddunder-proto@1.0.1(transitive)
- Removedemoji-regex@9.2.2(transitive)
- Removedes-abstract@1.23.8(transitive)
- Removedes-define-property@1.0.1(transitive)
- Removedes-errors@1.3.0(transitive)
- Removedes-object-atoms@1.0.0(transitive)
- Removedes-set-tostringtag@2.1.0(transitive)
- Removedes-shim-unscopables@1.0.2(transitive)
- Removedes-to-primitive@1.3.0(transitive)
- Removedescape-string-regexp@4.0.0(transitive)
- Removedeslint@8.57.1(transitive)
- Removedeslint-plugin-jsx-a11y@6.7.1(transitive)
- Removedeslint-scope@7.2.2(transitive)
- Removedeslint-visitor-keys@3.4.3(transitive)
- Removedespree@9.6.1(transitive)
- Removedesquery@1.6.0(transitive)
- Removedesrecurse@4.3.0(transitive)
- Removedestraverse@5.3.0(transitive)
- Removedesutils@2.0.3(transitive)
- Removedfast-deep-equal@3.1.3(transitive)
- Removedfast-json-stable-stringify@2.1.0(transitive)
- Removedfast-levenshtein@2.0.6(transitive)
- Removedfastq@1.18.0(transitive)
- Removedfile-entry-cache@6.0.1(transitive)
- Removedfind-up@5.0.0(transitive)
- Removedflat-cache@3.2.0(transitive)
- Removedflatted@3.3.2(transitive)
- Removedfor-each@0.3.3(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedfunction.prototype.name@1.1.8(transitive)
- Removedfunctions-have-names@1.2.3(transitive)
- Removedget-intrinsic@1.2.6(transitive)
- Removedget-symbol-description@1.1.0(transitive)
- Removedglob@7.2.3(transitive)
- Removedglob-parent@6.0.2(transitive)
- Removedglobals@13.24.0(transitive)
- Removedglobalthis@1.0.4(transitive)
- Removedgopd@1.2.0(transitive)
- Removedgraphemer@1.4.0(transitive)
- Removedhas@1.0.4(transitive)
- Removedhas-bigints@1.1.0(transitive)
- Removedhas-flag@4.0.0(transitive)
- Removedhas-property-descriptors@1.0.2(transitive)
- Removedhas-proto@1.2.0(transitive)
- Removedhas-symbols@1.1.0(transitive)
- Removedhas-tostringtag@1.0.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedignore@5.3.2(transitive)
- Removedimport-fresh@3.3.0(transitive)
- Removedimurmurhash@0.1.4(transitive)
- Removedinflight@1.0.6(transitive)
- Removedinherits@2.0.4(transitive)
- Removedinternal-slot@1.1.0(transitive)
- Removedis-array-buffer@3.0.5(transitive)
- Removedis-async-function@2.0.0(transitive)
- Removedis-bigint@1.1.0(transitive)
- Removedis-boolean-object@1.2.1(transitive)
- Removedis-callable@1.2.7(transitive)
- Removedis-data-view@1.0.2(transitive)
- Removedis-date-object@1.1.0(transitive)
- Removedis-extglob@2.1.1(transitive)
- Removedis-finalizationregistry@1.1.1(transitive)
- Removedis-generator-function@1.0.10(transitive)
- Removedis-glob@4.0.3(transitive)
- Removedis-map@2.0.3(transitive)
- Removedis-number-object@1.1.1(transitive)
- Removedis-path-inside@3.0.3(transitive)
- Removedis-regex@1.2.1(transitive)
- Removedis-set@2.0.3(transitive)
- Removedis-shared-array-buffer@1.0.4(transitive)
- Removedis-string@1.1.1(transitive)
- Removedis-symbol@1.1.1(transitive)
- Removedis-typed-array@1.1.15(transitive)
- Removedis-weakmap@2.0.2(transitive)
- Removedis-weakref@1.1.0(transitive)
- Removedis-weakset@2.0.4(transitive)
- Removedisarray@2.0.5(transitive)
- Removedisexe@2.0.0(transitive)
- Removedjs-cookie@3.0.1(transitive)
- Removedjs-yaml@4.1.0(transitive)
- Removedjson-buffer@3.0.1(transitive)
- Removedjson-schema-traverse@0.4.1(transitive)
- Removedjson-stable-stringify-without-jsonify@1.0.1(transitive)
- Removedjsx-ast-utils@3.3.5(transitive)
- Removedkeyv@4.5.4(transitive)
- Removedlevn@0.4.1(transitive)
- Removedlocate-path@6.0.0(transitive)
- Removedlodash.get@4.4.2(transitive)
- Removedlodash.merge@4.6.2(transitive)
- Removedmath-intrinsics@1.1.0(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedms@2.1.3(transitive)
- Removednatural-compare@1.4.0(transitive)
- Removedobject-inspect@1.13.3(transitive)
- Removedobject-keys@1.1.1(transitive)
- Removedobject.assign@4.1.7(transitive)
- Removedobject.entries@1.1.8(transitive)
- Removedobject.fromentries@2.0.8(transitive)
- Removedobject.values@1.2.1(transitive)
- Removedonce@1.4.0(transitive)
- Removedoptionator@0.9.4(transitive)
- Removedown-keys@1.0.1(transitive)
- Removedp-limit@3.1.0(transitive)
- Removedp-locate@5.0.0(transitive)
- Removedparent-module@1.0.1(transitive)
- Removedpath-exists@4.0.0(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedpath-key@3.1.1(transitive)
- Removedpossible-typed-array-names@1.0.0(transitive)
- Removedprelude-ls@1.2.1(transitive)
- Removedpunycode@2.3.1(transitive)
- Removedqueue-microtask@1.2.3(transitive)
- Removedreflect.getprototypeof@1.0.9(transitive)
- Removedregenerator-runtime@0.14.1(transitive)
- Removedregexp.prototype.flags@1.5.3(transitive)
- Removedresolve-from@4.0.0(transitive)
- Removedreusify@1.0.4(transitive)
- Removedrimraf@3.0.2(transitive)
- Removedrun-parallel@1.2.0(transitive)
- Removedsafe-array-concat@1.1.3(transitive)
- Removedsafe-push-apply@1.0.0(transitive)
- Removedsafe-regex-test@1.1.0(transitive)
- Removedsemver@6.3.1(transitive)
- Removedset-function-length@1.2.2(transitive)
- Removedset-function-name@2.0.2(transitive)
- Removedshebang-command@2.0.0(transitive)
- Removedshebang-regex@3.0.0(transitive)
- Removedside-channel@1.1.0(transitive)
- Removedside-channel-list@1.0.0(transitive)
- Removedside-channel-map@1.0.1(transitive)
- Removedside-channel-weakmap@1.0.2(transitive)
- Removedstring.prototype.trim@1.2.10(transitive)
- Removedstring.prototype.trimend@1.0.9(transitive)
- Removedstring.prototype.trimstart@1.0.8(transitive)
- Removedstrip-ansi@6.0.1(transitive)
- Removedstrip-json-comments@3.1.1(transitive)
- Removedsupports-color@7.2.0(transitive)
- Removedtext-table@0.2.0(transitive)
- Removedtslib@2.8.1(transitive)
- Removedtype-check@0.4.0(transitive)
- Removedtype-fest@0.20.2(transitive)
- Removedtyped-array-buffer@1.0.3(transitive)
- Removedtyped-array-byte-length@1.0.3(transitive)
- Removedtyped-array-byte-offset@1.0.4(transitive)
- Removedtyped-array-length@1.0.7(transitive)
- Removedunbox-primitive@1.1.0(transitive)
- Removeduri-js@4.4.1(transitive)
- Removedwhich@2.0.2(transitive)
- Removedwhich-boxed-primitive@1.1.1(transitive)
- Removedwhich-builtin-type@1.2.1(transitive)
- Removedwhich-collection@1.0.2(transitive)
- Removedwhich-typed-array@1.1.18(transitive)
- Removedword-wrap@1.2.5(transitive)
- Removedwrappy@1.0.2(transitive)
- Removedyocto-queue@0.1.0(transitive)