Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions packages/components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
</p>
</div>

> [!WARNING]
> Built for internal use.

This package contains components that are used in several applications. Have a look at the other packages for how to use.

Currently it contains the following:
Expand All @@ -25,10 +22,20 @@ Currently it contains the following:

To re-build the code run

<font size=1>
```js
npm run build
```

To run lint run

```js
npm run lint
```

To run types run

```js
npm run compile
npm run types
```

</font>
Expand Down
21 changes: 19 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,25 @@
"name": "@bitcoin-computer/components",
"version": "0.24.1-beta.0",
"description": "",
"license": "ISC",
"author": "",
"license": "MIT",
"author": {
"name": "Clemens Ley",
"email": "clemens@bitcoincomputer.io",
"url": "https://github.com/bitcoin-computer"
},
"contributors": [
"Clemens Ley",
"Laura Tardivo",
"Vivek Singh"
],
"homepage": "http://bitcoincomputer.io/",
"bugs": {
"url": "https://github.com/bitcoin-computer/monorepo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoin-computer/monorepo/tree/main/packages/components"
},
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
Expand Down