-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from babylonlabs-io/npm-config
configure npm
- Loading branch information
Showing
7 changed files
with
63 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
src/ | ||
public/ | ||
tests/ | ||
.storybook/ | ||
.husky/ | ||
node_modules/ | ||
**/*.test.* | ||
**/__tests__/ |
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,24 @@ | ||
<p align="center"> | ||
<img alt="Babylon Logo" src="https://github.com/user-attachments/assets/b21652b5-847d-48b2-89a7-0f0969a50900" width="100" /> | ||
<h3 align="center">@babylonlabs-io/bbn-wallet-connect</h3> | ||
<p align="center">Babylon Wallet Connector</p> | ||
</p> | ||
<br/> | ||
|
||
## Installation | ||
|
||
```console | ||
npm i @babylonlabs-io/bbn-wallet-connect | ||
``` | ||
|
||
## Version Release | ||
|
||
### Stable version | ||
|
||
Stable release versions are manually released from the main branch. | ||
|
||
## Storybook | ||
|
||
```console | ||
npm run storybook | ||
``` |
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 |
---|---|---|
@@ -1,30 +1,38 @@ | ||
{ | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | ||
"incremental": true, | ||
"target": "ES2020", | ||
"baseUrl": "./src", | ||
"useDefineForClassFields": true, | ||
"lib": ["ES2020", "DOM", "DOM.Iterable"], | ||
"module": "ESNext", | ||
"skipLibCheck": true, | ||
|
||
/* Bundler mode */ | ||
/* Bundler Resolution */ | ||
"moduleResolution": "Bundler", | ||
"allowImportingTsExtensions": true, | ||
"noImplicitAny": false, | ||
"allowSyntheticDefaultImports": true, | ||
"esModuleInterop": true, | ||
"noImplicitAny": true, | ||
"isolatedModules": true, | ||
"moduleDetection": "force", | ||
"noEmit": true, | ||
"jsx": "react-jsx", | ||
|
||
/* Declarations */ | ||
"declaration": true, | ||
"emitDeclarationOnly": true, | ||
"declarationDir": "dist", | ||
|
||
/* Linting */ | ||
"strict": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"paths": { | ||
"@/*": ["*", "./*"] | ||
} | ||
}, | ||
"outDir": "dist" | ||
}, | ||
"include": ["src"] | ||
"include": ["src"], | ||
"keywords": ["react", "babylonlabs", "bbn", "wallet-connect", "bitcoin", "btc", "bitcoin-wallet"] | ||
} |
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,4 +1,7 @@ | ||
{ | ||
"files": [], | ||
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }] | ||
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }], | ||
"compilerOptions": { | ||
"declaration": true | ||
} | ||
} |
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