-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0d6999c
commit f8a0211
Showing
3 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
# mipd | ||
|
||
## 0.0.6 | ||
|
||
### Patch Changes | ||
|
||
- [#7](https://github.com/wevm/mipd/pull/7) [`0d6999c`](https://github.com/wevm/mipd/commit/0d6999c375f817eb67228e84faf449eb5f8e3fef) Thanks [@DanielSinclair](https://github.com/DanielSinclair)! - Enforcing `icon` string type to be a RFC-2397 compliant data URI |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "mipd", | ||
"description": "TypeScript Utilities for EIP-6963", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"license": "MIT", | ||
"repository": "wagmi-dev/mipd", | ||
"scripts": { | ||
|
@@ -56,7 +56,9 @@ | |
}, | ||
"typesVersions": { | ||
"*": { | ||
"window": ["./src/window.d.ts"] | ||
"window": [ | ||
"./src/window.d.ts" | ||
] | ||
} | ||
}, | ||
"peerDependencies": { | ||
|
@@ -88,14 +90,25 @@ | |
"vite": "^4.3.9", | ||
"vitest": "^0.32.2" | ||
}, | ||
"contributors": ["jxom.eth <[email protected]>", "awkweb.eth <[email protected]>"], | ||
"contributors": [ | ||
"jxom.eth <[email protected]>", | ||
"awkweb.eth <[email protected]>" | ||
], | ||
"funding": [ | ||
{ | ||
"type": "github", | ||
"url": "https://github.com/sponsors/wagmi-dev" | ||
} | ||
], | ||
"keywords": ["eth", "ethereum", "dapps", "wallet", "web3", "eip", "6963"], | ||
"keywords": [ | ||
"eth", | ||
"ethereum", | ||
"dapps", | ||
"wallet", | ||
"web3", | ||
"eip", | ||
"6963" | ||
], | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm format && pnpm lint:fix" | ||
}, | ||
|