Skip to content

Commit

Permalink
docs: improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dylancom committed Oct 13, 2020
1 parent 031cc54 commit 85068d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# react-native-airplay-cast

Stream content to AirPlay-enabled devices
Stream audio or video to AirPlay-enabled devices.

## Installation

Expand All @@ -15,7 +15,7 @@ import { AirPlayButton } from "react-native-airplay-cast";

// ...

<AirPlayButton />
<AirPlayButton style={{ width: 30, height: 30 }} />
```

## Contributing
Expand Down
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-airplay-cast",
"version": "0.1.0",
"description": "Stream content to AirPlay-enabled devices",
"description": "Stream audio or video to AirPlay-enabled devices",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/src/index.d.ts",
Expand Down Expand Up @@ -119,7 +119,10 @@
]
}
},
"eslintIgnore": ["node_modules/", "lib/"],
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
Expand All @@ -130,6 +133,10 @@
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": ["commonjs", "module", "typescript"]
"targets": [
"commonjs",
"module",
"typescript"
]
}
}

0 comments on commit 85068d7

Please sign in to comment.