@ledgerhq/connect-kit 1.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/README.md +3 -0
- package/package.json +46 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## Unreleased
|
|
9
|
+
|
|
10
|
+
## 1.0.0-beta.1 - 2022-10-28
|
|
11
|
+
This is the first public version of the package.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Show a modal to guide the user.
|
|
15
|
+
- Get a Ledger Connect provider on Safari on iOS when connecting to chainId 1.
|
|
16
|
+
- Get a WalletConnect provider when on other platforms and chainIds.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ledgerhq/connect-kit",
|
|
3
|
+
"version": "1.0.0-beta.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/umd/index.js",
|
|
6
|
+
"module": "dist/umd/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/LedgerHQ/connect-kit",
|
|
14
|
+
"directory": "packages/connect-kit"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
18
|
+
"rollup": "rollup -c",
|
|
19
|
+
"build": "rollup -c --compact"
|
|
20
|
+
},
|
|
21
|
+
"author": "",
|
|
22
|
+
"license": "ISC",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@rollup/plugin-commonjs": "^22.0.0",
|
|
25
|
+
"@rollup/plugin-image": "^2.1.1",
|
|
26
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
27
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
28
|
+
"@rollup/plugin-typescript": "^8.3.3",
|
|
29
|
+
"@types/react": "^18.0.13",
|
|
30
|
+
"@types/react-dom": "^18.0.5",
|
|
31
|
+
"@types/styled-components": "^5.1.25",
|
|
32
|
+
"bowser": "^2.11.0",
|
|
33
|
+
"rollup": "^2.75.6",
|
|
34
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
35
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
36
|
+
"tslib": "^2.4.0",
|
|
37
|
+
"typescript": "^4.7.3"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"react": "^18.2.0",
|
|
41
|
+
"react-dom": "^18.2.0",
|
|
42
|
+
"styled-components": "^5.3.5",
|
|
43
|
+
"@walletconnect/ethereum-provider": "^1.8.0",
|
|
44
|
+
"qrcode.react": "^3.1.0"
|
|
45
|
+
}
|
|
46
|
+
}
|