Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[0.0.15](https://github.com/multiversx/mx-sdk-dapp-ui/pull/165)] - 2025-07-15

- [Removed cjs from bundle](https://github.com/multiversx/mx-sdk-dapp-ui/pull/164)

## [[0.0.14](https://github.com/multiversx/mx-sdk-dapp-ui/pull/163)] - 2025-07-14

- [Updates on styles for templates.](https://github.com/multiversx/mx-sdk-dapp-ui/pull/162)
Expand Down
35 changes: 12 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,26 @@
{
"name": "@multiversx/sdk-dapp-ui",
"version": "0.0.14",
"version": "0.0.15",
"description": "A library to hold UI components for a dApp on the MultiversX blockchain",
"author": "MultiversX",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"module": "dist/web-components/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/components/sdk-dapp-ui.esm.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js",
"import": "./dist/web-components/index.js",
"types": "./dist/types/index.d.ts"
},
"./types/*": {
"types": "./dist/types/*.d.ts"
},
"./web-components/*": {
"import": "./dist/web-components/*.js",
"types": "./dist/web-components/*.d.ts"
},
"./dist/loader": {
"import": "./dist/loader/index.js",
"require": "./dist/loader/index.cjs",
"types": "./dist/loader/index.d.ts"
},
"./react": {
"import": "./dist/react/components.ts",
"require": "./dist/react/components.ts"
},
"./react/constants": {
"import": "./dist/react/constants.ts",
"require": "./dist/react/constants.ts"
}
},
"repository": {
Expand All @@ -51,17 +40,17 @@
"generate": "stencil generate",
"build:dev": "stencil build --dev",
"build": "stencil build --prod",
"start": "yarn run build:dev --watch --serve "
"start": "yarn run build:dev --watch --serve"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": ">= 6.7.2",
"@fortawesome/free-solid-svg-icons": ">= 6.7.2",
"@fortawesome/fontawesome-svg-core": ">=6.7.2",
"@fortawesome/free-solid-svg-icons": ">=6.7.2",
"@rollup/plugin-image": "^3.0.3",
"@stencil/react-output-target": "0.8.2",
"classnames": ">= 2.5.1",
"@stencil/react-output-target": "1.2.0",
"classnames": ">=2.5.1",
"lodash.inrange": "^3.3.0",
"lodash.range": "^3.2.0",
"qrcode": ">= 1.5.4",
"qrcode": ">=1.5.4",
"sass-embedded": "^1.85.1"
},
"devDependencies": {
Expand Down
Loading
Loading