-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into fix/test-branches
- Loading branch information
Showing
86 changed files
with
2,702 additions
and
2,091 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Check TypeScript Errors", | ||
"type": "shell", | ||
"command": "npx tsc --noEmit", | ||
"problemMatcher": ["$tsc"], | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@leather.io/extension", | ||
"description": "Leather is a browser extension for interacting with Stacks apps", | ||
"private": true, | ||
"version": "6.51.1", | ||
"version": "6.53.0", | ||
"packageManager": "[email protected]", | ||
"author": { | ||
"name": "Leather Wallet LLC" | ||
|
@@ -24,6 +24,9 @@ | |
"build:test": "concurrently 'pnpm build:ext:test' 'pnpm build:test-app'", | ||
"build:test-api": "concurrently 'pnpm build:ext:test' 'pnpm build:test-app'", | ||
"build:test:watch": "cross-env WALLET_ENVIRONMENT=testing webpack --config webpack/webpack.config.prod.js", | ||
"checks": "bash ./run-checks.sh", | ||
"checks:install": "bash ./run-checks.sh --install-hook", | ||
"checks:remove": "bash ./run-checks.sh --remove-hook", | ||
"clean": "rm -rf ./dist", | ||
"clean:all": "rm -rf ./dist && rm -rf ./coverage && rm -rf ./node_modules", | ||
"lint": "concurrently -g 'pnpm lint:prettier' 'pnpm lint:unused-exports' 'pnpm lint:deps' 'pnpm lint:remote-wallet-config' 'pnpm lint:eslint' 'pnpm lint:filename'", | ||
|
@@ -141,16 +144,17 @@ | |
"@coinbase/cbpay-js": "2.1.0", | ||
"@fungible-systems/zone-file": "2.0.0", | ||
"@hirosystems/token-metadata-api-client": "1.2.0", | ||
"@hookform/resolvers": "3.9.0", | ||
"@leather.io/bitcoin": "0.14.2", | ||
"@leather.io/constants": "0.12.5", | ||
"@leather.io/crypto": "1.6.6", | ||
"@leather.io/models": "0.18.2", | ||
"@leather.io/query": "2.17.0", | ||
"@leather.io/stacks": "1.2.3", | ||
"@leather.io/tokens": "0.9.1", | ||
"@leather.io/ui": "1.30.0", | ||
"@leather.io/utils": "0.16.6", | ||
"@hookform/resolvers": "3.9.1", | ||
"@leather.io/analytics": "2.0.0", | ||
"@leather.io/bitcoin": "0.16.1", | ||
"@leather.io/constants": "0.13.1", | ||
"@leather.io/crypto": "1.6.8", | ||
"@leather.io/models": "0.19.0", | ||
"@leather.io/query": "2.22.0", | ||
"@leather.io/stacks": "1.3.1", | ||
"@leather.io/tokens": "0.10.0", | ||
"@leather.io/ui": "1.33.0", | ||
"@leather.io/utils": "0.17.0", | ||
"@ledgerhq/hw-transport-webusb": "6.27.19", | ||
"@noble/hashes": "1.5.0", | ||
"@noble/secp256k1": "2.1.0", | ||
|
@@ -177,15 +181,15 @@ | |
"@stacks/profile": "6.15.0", | ||
"@stacks/rpc-client": "1.0.3", | ||
"@stacks/storage": "6.15.0", | ||
"@stacks/transactions": "6.15.0", | ||
"@stacks/transactions": "6.17.0", | ||
"@stacks/wallet-sdk": "6.15.0", | ||
"@stitches/react": "1.2.8", | ||
"@storybook/addon-styling-webpack": "1.0.0", | ||
"@styled-system/theme-get": "5.1.2", | ||
"@tanstack/query-async-storage-persister": "5.51.21", | ||
"@tanstack/react-query": "5.51.23", | ||
"@tanstack/react-query-devtools": "5.51.23", | ||
"@tanstack/react-query-persist-client": "5.51.23", | ||
"@tanstack/query-async-storage-persister": "5.59.16", | ||
"@tanstack/react-query": "5.59.16", | ||
"@tanstack/react-query-devtools": "5.59.16", | ||
"@tanstack/react-query-persist-client": "5.59.16", | ||
"@types/lodash.uniqby": "4.7.7", | ||
"@typescript-eslint/eslint-plugin": "7.5.0", | ||
"@zondax/ledger-stacks": "1.0.4", | ||
|
@@ -256,20 +260,21 @@ | |
"webextension-polyfill": "0.12.0", | ||
"yup": "1.4.0", | ||
"zod": "3.23.8", | ||
"zod-validation-error": "3.4.0", | ||
"zxcvbn": "4.4.2" | ||
}, | ||
"devDependencies": { | ||
"@actions/core": "1.10.1", | ||
"@btckit/types": "0.0.19", | ||
"@chromatic-com/storybook": "1.2.23", | ||
"@leather.io/eslint-config": "0.7.0", | ||
"@leather.io/panda-preset": "0.4.1", | ||
"@leather.io/panda-preset": "0.4.3", | ||
"@leather.io/prettier-config": "0.6.0", | ||
"@leather.io/rpc": "2.1.13", | ||
"@leather.io/rpc": "2.1.15", | ||
"@ls-lint/ls-lint": "2.2.3", | ||
"@mdx-js/loader": "3.0.0", | ||
"@pandacss/dev": "0.46.1", | ||
"@playwright/test": "1.44.0", | ||
"@playwright/test": "1.48.2", | ||
"@pmmmwh/react-refresh-webpack-plugin": "0.5.13", | ||
"@redux-devtools/cli": "4.0.0", | ||
"@redux-devtools/remote": "0.9.3", | ||
|
Oops, something went wrong.