-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: move deps to devDeps for types + use peerDep for keyring-api #131
base: main
Are you sure you want to change the base?
Changes from all commits
6d1be95
c440dc8
0a0d433
5a3ab44
9c33f64
4d69b82
24ef2d5
f5bc450
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,8 +52,7 @@ | |
"@metamask/eth-sig-util": "^8.1.2", | ||
"@trezor/connect-plugin-ethereum": "^9.0.3", | ||
"@trezor/connect-web": "^9.1.11", | ||
"hdkey": "^2.1.0", | ||
"tslib": "^2.6.2" | ||
"hdkey": "^2.1.0" | ||
}, | ||
"devDependencies": { | ||
"@ethereumjs/common": "^3.2.0", | ||
|
@@ -76,9 +75,13 @@ | |
"sinon": "^19.0.2", | ||
"ts-jest": "^29.0.5", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.6.2", | ||
"typedoc": "^0.25.13", | ||
"typescript": "~5.6.3" | ||
}, | ||
"peerDependencies": { | ||
"tslib": "^2.6.2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should have been a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should it be in both There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried to follow the same pattern than for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also, if we get rid of it in the |
||
}, | ||
"engines": { | ||
"node": "^18.18 || >=20" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,18 +45,17 @@ | |
"test:watch": "jest --watch" | ||
}, | ||
"dependencies": { | ||
"@metamask/keyring-api": "workspace:^", | ||
"@metamask/keyring-snap-client": "workspace:^", | ||
"@metamask/keyring-utils": "workspace:^", | ||
"@metamask/snaps-controllers": "^9.10.0", | ||
"@metamask/snaps-sdk": "^6.7.0", | ||
"@metamask/snaps-utils": "^8.3.0", | ||
"webextension-polyfill": "^0.12.0" | ||
"@metamask/snaps-utils": "^8.3.0" | ||
}, | ||
"devDependencies": { | ||
"@lavamoat/allow-scripts": "^3.2.1", | ||
"@lavamoat/preinstall-always-fail": "^2.1.0", | ||
"@metamask/auto-changelog": "^3.4.4", | ||
"@metamask/keyring-api": "workspace:^", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved to |
||
"@metamask/providers": "^18.3.1", | ||
"@metamask/utils": "^11.0.1", | ||
"@ts-bridge/cli": "^0.6.1", | ||
|
@@ -71,10 +70,12 @@ | |
"ts-node": "^10.9.2", | ||
"tsd": "^0.31.0", | ||
"typedoc": "^0.25.13", | ||
"typescript": "~5.6.3" | ||
"typescript": "~5.6.3", | ||
"webextension-polyfill": "^0.12.0" | ||
}, | ||
"peerDependencies": { | ||
"@metamask/providers": "^18.3.1" | ||
"@metamask/providers": "^18.3.1", | ||
"webextension-polyfill": "^0.10.0 || ^0.11.0 || ^0.12.0" | ||
}, | ||
"engines": { | ||
"node": "^18.18 || >=20" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed as of now, but since this package has already been "future-proof" for
ts-bridge
we might wanna addtypescript
as well.