Files
xverse-web-extension/package.json
Victor Kirov d9b143276d Send btc integrate with tx consolidation logic (#766)
* Add btc send screen skeleton

* Implement MAX

* extract amount selector to component

* Add max dust filtered callout

* Fix minor styling

* Add fee display

* Implement fee selection

* Add insufficient funds on fee selector

* add insufficient funds message on custom fee selector

* Add insufficient funds gate

* fix some todos

* Add min and max fee rate

* fix container styling

* fix styling

* Fix fee summary on confirm page

* fix some component interactions

* fix a few minor bugs

* fix rbf typing

* Close window if ledger

* Update src/app/ui-library/input.tsx

Co-authored-by: Jordan K. <65149726+jordankzf@users.noreply.github.com>

* Update src/app/ui-library/input.tsx

Co-authored-by: Jordan K. <65149726+jordankzf@users.noreply.github.com>

* Add address editable field

* chore: package-lock exact version

* refactor: use classnames for variants in ui-library button

and default to currentColor in spinner

* refactor: use css classnames in ui input

and add the disabled styles

* fix: edit and pencil icon row

* fix: recipient input next should be disabled when error

and fix up btc amount selector button states

* fix: confirm/cancel translation keys

* Update core

* Remove unneeded toNumbers

* Move error text to feedback

* add new for BigNumber

* Make sats/vByte consistent

* Fix fee select styling

* Fix input styling

* switch to new spinner

* chore: bump core version

* fix: rotate faders icon

* Revert "Fix fee select styling"

This reverts commit a750d7bf72.

* fix: minor spacing, styling, and colour fixes

* fix: react key warning fix

* bump core

* Fix api

* Don't log insufficient funds message

* Fix insufficient amount on load

* Enable rbf on txns

* chore: bump core version

---------

Co-authored-by: Jordan K. <65149726+jordankzf@users.noreply.github.com>
Co-authored-by: Tim Man <tim@secretkeylabs.com>
2024-02-15 17:55:48 +08:00

151 lines
4.6 KiB
JSON

{
"name": "xverse-web-extension",
"description": "A Bitcoin wallet for Web3",
"version": "0.29.2",
"private": true,
"engines": {
"node": "^18.18.2"
},
"dependencies": {
"@ledgerhq/hw-transport-webusb": "^6.27.13",
"@phosphor-icons/react": "^2.0.10",
"@react-spring/web": "^9.6.1",
"@scure/btc-signer": "1.2.1",
"@secretkeylabs/xverse-core": "11.0.0",
"@stacks/connect": "7.4.1",
"@stacks/stacks-blockchain-api-types": "6.1.1",
"@stacks/transactions": "6.9.0",
"@tanstack/query-sync-storage-persister": "^4.29.1",
"@tanstack/react-query": "^4.29.3",
"@tanstack/react-query-devtools": "^4.29.3",
"@tanstack/react-query-persist-client": "^4.29.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"alex-sdk": "^0.1.18",
"argon2-browser": "^1.18.0",
"axios": "^1.1.3",
"bignumber.js": "^9.1.0",
"bip39": "^3.0.3",
"buffer": "6.0.3",
"c32check": "^2.0.0",
"classnames": "^2.3.2",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.29.3",
"i": "0.3.7",
"i18next": "^21.9.1",
"js-sha256": "^0.10.1",
"jsontokens": "^4.0.1",
"mixpanel-browser": "^2.47.0",
"moment": "^2.29.4",
"nanoid": "^4.0.0",
"npm": "10.4.0",
"p-queue": "^7.3.4",
"process": "^0.11.10",
"qr-code-styling": "^1.5.0",
"rc-image": "^5.14.0",
"react": "^18.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-i18next": "^11.18.6",
"react-is-visible": "^1.2.0",
"react-modal": "^3.15.1",
"react-number-format": "^5.0.0",
"react-qr-code": "^2.0.8",
"react-redux": "^7.2.1",
"react-router-dom": "^6.4.0",
"react-select": "^5.4.0",
"react-share": "^4.4.1",
"react-switch": "^7.0.0",
"react-tabs": "^6.0.2",
"react-tooltip": "^5.4.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-state-sync": "^3.1.4",
"sats-connect": "1.4.0",
"stream-browserify": "^3.0.0",
"string-to-color": "^2.2.2",
"styled-components": "^5.3.5",
"valid-url": "^1.0.9",
"webextension-polyfill": "^0.10.0",
"zxcvbn": "^4.4.2"
},
"scripts": {
"build": "npm run clean && NODE_ENV=production npx node webpack/utils/build.js",
"start": "npx node webpack/utils/devServer.js",
"clean": "rimraf build",
"test": "vitest ./src",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepare": "husky install"
},
"overrides": {
"buffer": "6.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint",
"tsc-files --noEmit src/styled.d.ts src/react-app-env.d.ts"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@tanstack/eslint-plugin-query": "^4.29.4",
"@types/argon2-browser": "^1.18.1",
"@types/chrome": "^0.0.237",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@types/redux-state-sync": "^3.1.5",
"@types/styled-components": "^5.1.26",
"@types/webextension-polyfill": "^0.9.2",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"base64-loader": "^1.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.1",
"eslint": "8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"glob": "^7.1.6",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"path": "^0.12.7",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.3",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"rimraf": "^3.0.2 ",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.5.1",
"tsc-files": "^1.1.4",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"type-fest": "^2.19.0",
"typescript": "^5.0.0",
"typescript-plugin-styled-components": "^3.0.0",
"vitest": "^0.34.6",
"webpack": "^5.89.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.11.0"
}
}