Package.json updates: Windows & yarn #240
35 changed files with 188 additions and 87 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -1,3 +0,0 @@
|
|||
[submodule "app/dist/type"]
|
||||
path = app/dist/type
|
||||
url = https://github.com/lbryio/typefaces
|
|
@ -11,14 +11,14 @@ export default () => `
|
|||
<div class="ecosystem__submodule__description">
|
||||
<div class="ecosystem__submodule__markdown">
|
||||
<h4 class="ecosystem__submodule__description__title">Overview</h4>
|
||||
<p>The LBRY app is a graphical browser for the decentralized content marketplace provided by the <a href="https://lbry.io" title="">LBRY</a> protocol. It is essentially the <a href="https://github.com/lbryio/lbry" title="">lbry daemon</a> bundled with an UI using <a href="http://electron.atom.io" title="">Electron</a>.</p>
|
||||
<p> Provides a secured payment gateway and address subscription service between the <a href="https://github.com/lbryio/lbry" title="">lbry-sdk</a> and the <a href="https://github.com/lbryio/lbrycrd" title=""> blockchain protocol</a>.</p>
|
||||
|
||||
<h4 class="ecosystem__submodule__description__title __connection">Connection to...</h4>
|
||||
<p class="__connection-details"></p>
|
||||
|
||||
<h4 class="ecosystem__submodule__description__title">Source</h4>
|
||||
<ul>
|
||||
<li><a href="https://github.com/lbryio/lbry-desktop" title="lbry-desktop source code">https://github.com/lbryio/lbry-desktop</a></li>
|
||||
<li><a href="https://github.com/lbryio/lbry/tree/master/lbrynet/extras/wallet/server" title="spv wallet server source code">https://github.com/lbryio/lbry/tree/master/lbrynet/extras/wallet/server</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -30,7 +30,19 @@ export default currentUrl => {
|
|||
{
|
||||
name: "Resources",
|
||||
title: "View LBRY resources",
|
||||
url: "/resources"
|
||||
url: "/resources",
|
||||
children: [
|
||||
{
|
||||
name: "Blockchain API",
|
||||
title: "Reference for the LBRY blockchain API",
|
||||
url: "/api/blockchain"
|
||||
},
|
||||
{
|
||||
name: "SDK API",
|
||||
title: "Reference for the SDK API",
|
||||
url: "/api/sdk"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Community",
|
||||
|
@ -41,10 +53,12 @@ export default currentUrl => {
|
|||
|
||||
return html`
|
||||
<nav class="navigation">
|
||||
<div class="inner-wrap">
|
||||
<a class="navigation__item logo" href="/" title="LBRY homepage">Home</a>
|
||||
<ul class="inner-wrap">
|
||||
<li class="navigation__item logo">
|
||||
<a href="/" title="LBRY homepage">Home</a>
|
||||
</li>
|
||||
${links.map(link => renderLink(currentUrl, link))}
|
||||
</div>
|
||||
</ul>
|
||||
</nav>
|
||||
`;
|
||||
};
|
||||
|
@ -66,11 +80,45 @@ function renderLink(href, link) {
|
|||
break;
|
||||
}
|
||||
|
||||
return html`
|
||||
<a
|
||||
class="navigation__item${activeClass ? " active" : ""}"
|
||||
href="${link.url}"
|
||||
title="${link.title}"
|
||||
>${link.name}</a>
|
||||
`;
|
||||
if (link.children) {
|
||||
const links = [];
|
||||
|
||||
links.push(html`
|
||||
<li class="navigation__item parent${activeClass ? " active" : ""}">
|
||||
<a
|
||||
href="${link.url}"
|
||||
title="${link.title}"
|
||||
>${link.name}</a>
|
||||
<ul>
|
||||
`);
|
||||
|
||||
for (const child of link.children) {
|
||||
links.push(html`
|
||||
<li>
|
||||
<a
|
||||
href="${child.url}"
|
||||
title="${child.title}"
|
||||
>${child.name}</a>
|
||||
</li>
|
||||
`);
|
||||
}
|
||||
|
||||
links.push(html`
|
||||
</ul>
|
||||
</li>
|
||||
`);
|
||||
|
||||
return links.join("");
|
||||
}
|
||||
|
||||
else {
|
||||
return html`
|
||||
<li class="navigation__item${activeClass ? " active" : ""}">
|
||||
<a
|
||||
href="${link.url}"
|
||||
title="${link.title}"
|
||||
>${link.name}</a>
|
||||
</li>
|
||||
`;
|
||||
}
|
||||
}
|
||||
|
|
1
app/dist/type
vendored
1
app/dist/type
vendored
|
@ -1 +0,0 @@
|
|||
Subproject commit e936317f4bd014640789a41f9ce8d9834e55b077
|
BIN
app/dist/type/inter/400.woff
vendored
Normal file
BIN
app/dist/type/inter/400.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/400.woff2
vendored
Normal file
BIN
app/dist/type/inter/400.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/400i.woff
vendored
Normal file
BIN
app/dist/type/inter/400i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/400i.woff2
vendored
Normal file
BIN
app/dist/type/inter/400i.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/500.woff
vendored
Normal file
BIN
app/dist/type/inter/500.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/500.woff2
vendored
Normal file
BIN
app/dist/type/inter/500.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/500i.woff
vendored
Normal file
BIN
app/dist/type/inter/500i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/500i.woff2
vendored
Normal file
BIN
app/dist/type/inter/500i.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/600.woff
vendored
Normal file
BIN
app/dist/type/inter/600.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/600.woff2
vendored
Normal file
BIN
app/dist/type/inter/600.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/600i.woff
vendored
Normal file
BIN
app/dist/type/inter/600i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/600i.woff2
vendored
Normal file
BIN
app/dist/type/inter/600i.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/700.woff
vendored
Normal file
BIN
app/dist/type/inter/700.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/700.woff2
vendored
Normal file
BIN
app/dist/type/inter/700.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/700i.woff
vendored
Normal file
BIN
app/dist/type/inter/700i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/700i.woff2
vendored
Normal file
BIN
app/dist/type/inter/700i.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/800.woff
vendored
Normal file
BIN
app/dist/type/inter/800.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/800.woff2
vendored
Normal file
BIN
app/dist/type/inter/800.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/800i.woff
vendored
Normal file
BIN
app/dist/type/inter/800i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/800i.woff2
vendored
Normal file
BIN
app/dist/type/inter/800i.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/900.woff
vendored
Normal file
BIN
app/dist/type/inter/900.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/900.woff2
vendored
Normal file
BIN
app/dist/type/inter/900.woff2
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/900i.woff
vendored
Normal file
BIN
app/dist/type/inter/900i.woff
vendored
Normal file
Binary file not shown.
BIN
app/dist/type/inter/900i.woff2
vendored
Normal file
BIN
app/dist/type/inter/900i.woff2
vendored
Normal file
Binary file not shown.
|
@ -30,6 +30,11 @@ String.prototype.escape = function() {
|
|||
let client;
|
||||
|
||||
if (typeof process.env.GITHUB_OAUTH_TOKEN !== "undefined") {
|
||||
// new octokit({
|
||||
// auth: `token ${process.env.GITHUB_OAUTH_TOKEN}`
|
||||
// });
|
||||
// https://github.com/octokit/rest.js/issues/1207
|
||||
|
||||
octokit.authenticate({
|
||||
type: "oauth",
|
||||
token: process.env.GITHUB_OAUTH_TOKEN
|
||||
|
|
|
@ -9,7 +9,8 @@
|
|||
position: fixed;
|
||||
z-index: 10;
|
||||
|
||||
> div:first-of-type {
|
||||
> ul:first-of-type {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
@media (min-width: 701px) {
|
||||
|
@ -39,7 +40,7 @@
|
|||
}
|
||||
|
||||
.navigation__item {
|
||||
overflow: hidden;
|
||||
// overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
@media (max-width: 700px) {
|
||||
|
@ -53,6 +54,19 @@
|
|||
}
|
||||
}
|
||||
|
||||
&:not(:hover) {
|
||||
a::after {
|
||||
bottom: -3px;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
a::after {
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-of-type {
|
||||
@include hide-text;
|
||||
width: 10rem; height: 3rem;
|
||||
|
@ -65,66 +79,99 @@
|
|||
flex: 1;
|
||||
}
|
||||
|
||||
&:not(:first-of-type):not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
|
||||
&::after {
|
||||
width: 100%; height: 3px;
|
||||
left: 0;
|
||||
&:not(.logo) {
|
||||
margin-right: 0.5rem;
|
||||
|
||||
background-color: $lbry-teal-3;
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: bottom 0.2s;
|
||||
a {
|
||||
color: inherit;
|
||||
font-size: 1rem;
|
||||
line-height: 4rem;
|
||||
|
||||
&:not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
|
||||
&::after {
|
||||
width: 100%; height: 3px;
|
||||
left: 0;
|
||||
|
||||
background-color: $lbry-teal-3;
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: bottom 0.2s;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.parent {
|
||||
display: inline-flex;
|
||||
|
||||
&:not(:hover) {
|
||||
&::after {
|
||||
bottom: -3px;
|
||||
ul {
|
||||
width: 0; height: 0;
|
||||
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&.active {
|
||||
&::after {
|
||||
bottom: 0;
|
||||
&:hover {
|
||||
ul {
|
||||
width: 100%;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
background-color: $lbry-white;
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
transition: opacity 0.2s;
|
||||
|
||||
&::before {
|
||||
height: 100%;
|
||||
top: 0; left: 0;
|
||||
|
||||
content: "→";
|
||||
font-size: 1rem;
|
||||
line-height: 4rem;
|
||||
opacity: 0.3;
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:not(:first-of-type) {
|
||||
color: inherit;
|
||||
font-size: 1rem;
|
||||
line-height: 4rem;
|
||||
}
|
||||
a {
|
||||
height: 100%;
|
||||
display: block;
|
||||
|
||||
&:not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
|
||||
padding-right: 0.5rem;
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
&[href="http://localhost:8000"],
|
||||
&[href="https://lbry.io"] {
|
||||
color: $lbry-white;
|
||||
margin-right: 0.5rem;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
|
||||
&:not(:hover)::after {
|
||||
background-color: $lbry-black;
|
||||
&:not([href="http://localhost:8000"]):not([href="https://lbry.io"]) {
|
||||
padding-right: 0.5rem;
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
&:hover::after {
|
||||
background-color: $lbry-teal-3;
|
||||
}
|
||||
&[href="http://localhost:8000"],
|
||||
&[href="https://lbry.io"] {
|
||||
color: $lbry-white;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
|
||||
&::after {
|
||||
width: 100%; height: 2rem;
|
||||
top: 1rem; left: 0;
|
||||
&:not(:hover)::after {
|
||||
background-color: $lbry-black;
|
||||
}
|
||||
|
||||
border-radius: 3px;
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: background-color 0.2s;
|
||||
z-index: -1;
|
||||
&:hover::after {
|
||||
background-color: $lbry-teal-3;
|
||||
}
|
||||
|
||||
&::after {
|
||||
width: 100%; height: 2rem;
|
||||
top: 1rem; left: 0;
|
||||
|
||||
border-radius: 3px;
|
||||
content: "";
|
||||
position: absolute;
|
||||
transition: background-color 0.2s;
|
||||
z-index: -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,10 +21,10 @@ If you want to contribute to LBRY, there's definitely something for you! The fir
|
|||
| Component | Language (Toolset) | What Is It
|
||||
--- | --- | ---
|
||||
| [lbrycrd](https://github.com/lbryio/lbrycrd) | C++ | A full node for the LBRY blockchain, including a standalone wallet. Used by miners and some applications. Most consumer applications do not bundle [[lbrycrd]] directly, and instead bundle [[lbry-sdk]].
|
||||
| [lbry-sdk](https://github.com/lbryio/lbry) | Python (Twisted) | A daemon that can be used directly or to develop other applications. Provides convenience [APIs](/api/sdk), bundles an SPV wallet ([[torba]]), and contains an implementation of the LBRY data network. |
|
||||
| [lbry-sdk](https://github.com/lbryio/lbry) | Python (asyncio) | A daemon that can be used directly or to develop other applications. Provides convenience [APIs](/api/sdk), bundles an SPV wallet ([[torba]]), and contains an implementation of the LBRY data network. |
|
||||
| [torba](https://github.com/lbryio/torba) | Python | An [[SPV]] (Simple Payment Verification) wallet. Bundled with [[lbry-sdk]]. |
|
||||
| [lbryumx](https://github.com/lbryio/lbryumx) | Protobuf, Python | The wallet server used by [[torba]].
|
||||
| [lbry-schema](https://github.com/lbryio/lbryschema) | Protobuf, Python | Defines the structure of the metadata stored in the LBRY blockchain.
|
||||
| [wallet server](https://github.com/lbryio/lbry/tree/master/lbrynet/extras/wallet/server) | Protobuf, Python | The wallet server used by [[torba]].
|
||||
| [schema](https://github.com/lbryio/lbry/tree/master/lbrynet/schema) | Protobuf, Python | Defines the structure of the metadata stored in the LBRY blockchain.
|
||||
|
||||
### Official Applications
|
||||
| Application | Language (Toolset) | What Is It
|
||||
|
|
|
@ -12,7 +12,7 @@ We encourage the submission of changes and additions to this glossary.
|
|||
|
||||
A Binary Large Object (BLOB) is a collection of binary data stored as a single entity in a database management system. When files are uploaded to the LBRY peer to peer network, they are broken down into 2MB encrypted blobs which are then shared to other peers.
|
||||
|
||||
A [[manifest]] blob is also created to index the multiple content blobs that were created from the file. A [[stream]] is the collection of all these blobs particlar to one published file.
|
||||
A [[manifest]] blob is also created to index the multiple content blobs that were created from the file. A [[stream]] is the collection of all these blobs particlar to one published file. See [Encoding](https://spec.lbry.io/#encoding) in the specification.
|
||||
|
||||
### Block
|
||||
|
||||
|
@ -44,19 +44,19 @@ Creating a channel claim certificate allows you to group and identify claims bas
|
|||
|
||||
### Claim
|
||||
|
||||
A claim (ClaimTrie) is the data structure which LBRY uses to store claims to names. It uses a trie to efficiently store all claimed names, which can then be hashed the same way a Merkle tree is hashed. The root hash of the ClaimTrie is stored in the block header of each LBRY block, enabling nodes in the LBRY network to efficiently and securely validate the state of the ClaimTrie. [Read more](https://lbry.io/faq/claimtrie-implementation)
|
||||
A claim (ClaimTrie) is the data structure which LBRY uses to store claims to names. It uses a trie to efficiently store all claimed names, which can then be hashed the same way a Merkle tree is hashed. The root hash of the ClaimTrie is stored in the block header of each LBRY block, enabling nodes in the LBRY network to efficiently and securely validate the state of the ClaimTrie. See [Stake & Claims](https://spec.lbry.io/#stakes) in the specification and [Read more](https://lbry.io/faq/claimtrie-implementation)
|
||||
|
||||
### Claim Deposit
|
||||
|
||||
When creating a channel claim or publishing content onto the LBRY blockchain, a small amount LBC (or more) must be deposited to reserve the name space in the claimtrie. See our [naming documentation](https://lbry.io/faq/naming) for more information.
|
||||
When creating a channel claim or publishing content onto the LBRY blockchain, a small amount LBC (or more) must be deposited to reserve the name space in the claimtrie. See [Stake & Claims](https://spec.lbry.io/#stakes) in the specification and [naming documentation](https://lbry.io/faq/naming) for more information.
|
||||
|
||||
### Claim Sequence
|
||||
|
||||
The claim sequence provides a way to determine which order a claim was created at a particular claim name and enables claim resolution via this modifier. If someone had the first claim at lbry://one, anyone could reference that claim as `lbry://one:1`. See [URI documentation](https://lbry.tech/resources/uri) for more details.
|
||||
The claim sequence provides a way to determine which order a claim was created at a particular claim name and enables claim resolution via this modifier. If someone had the first claim at lbry://one, anyone could reference that claim as `lbry://one:1`. See [Stake & Claims](https://spec.lbry.io/#stakes) in the specification and [URI documentation](https://lbry.tech/resources/uri) for more details.
|
||||
|
||||
### Claim Support
|
||||
|
||||
A special type of transaction that includes claim information, a LBC address, and a LBC value. Supports to one's own address increase the bid value of a claim and can be revoked anytime. Supports to an outside address also increase the value, but can only be revoked by the receiver (tip mechanism).
|
||||
A special type of transaction that includes claim information, a LBC address, and a LBC value. Supports to one's own address increase the bid value of a claim and can be revoked anytime. Supports to an outside address also increase the value, but can only be revoked by the receiver (tip mechanism). See [supports](https://spec.lbry.io/#supports) in the specification.
|
||||
|
||||
### Cold Storage
|
||||
|
||||
|
@ -194,7 +194,7 @@ Main LBRY network and its blockchain. The term is mostly used in comparison to *
|
|||
|
||||
### Manifest
|
||||
|
||||
A blob that contains information about all the other blobs in its stream (the content blobs), in JSON format. Sometimes referred to as the [[Stream Descriptor (SD) Blob]], this blob lists each of the other blobs in the stream, in order, along with the filename for the content, and the cryptographic key needed to decode the content blobs [[the stream key]].
|
||||
A blob that contains information about all the other blobs in its stream (the content blobs), in JSON format. Sometimes referred to as the [[Stream Descriptor (SD) Blob]], this blob lists each of the other blobs in the stream, in order, along with the filename for the content, and the cryptographic key needed to decode the content blobs [[the stream key]]. See [Content Blobs](https://spec.lbry.io/#content-blobs) in the specification.
|
||||
|
||||
### Main Chain
|
||||
|
||||
|
@ -288,6 +288,10 @@ The resolve API command returns all available information about a claim or chann
|
|||
|
||||
Amount of newly generated LBRY credits that a *miner* may claim in a new block. The first transaction in the block allows a miner to claim currently allowed reward as well as all *transaction fees* from all transactions in the block. For security reasons, rewards cannot be *spent* before 100 blocks have been built on top of the current block.
|
||||
|
||||
### Schema
|
||||
|
||||
The schema defines the structure of the data (metadata) that is stored in claims in the LBRY blockchain. See [Metadata](https://spec.lbry.io/#metadata) in the white paper, and [lbry.tech/resources/schema](https://lbry.tech/resources/schema) for more information.
|
||||
|
||||
### Script
|
||||
|
||||
A compact Turing-incomplete programming language used in transaction *inputs* and *outputs*. Scripts are interpreted by a Forth-like stack machine: each operation manipulates data on the stack. Most scripts follow the standard pattern and verify the digital *signature* provided in the transaction *input* against a *public key* provided in the previous transaction's *output*. Both signatures and public keys are provided using scripts. Scripts may contain complex conditions, but can never change any amounts being transferred. Amount is stored in a separate field in a *transaction output*.
|
||||
|
@ -326,11 +330,11 @@ SPV is an abbreviation for [[Simplified Payment Verification]].
|
|||
|
||||
### Stream
|
||||
|
||||
Streaming media is multimedia that is constantly received by and presented to an end-user while being delivered by a provider. In LBRY, streams are associated with claim data in order to provide the capability to download files over a Peer to Peer network.
|
||||
Streaming media is multimedia that is constantly received by and presented to an end-user while being delivered by a provider. In LBRY, streams are associated with claim data in order to provide the capability to download files over a Peer to Peer network. See [Streams](https://spec.lbry.io/#streams) in the specification.
|
||||
|
||||
### Stream Descriptor (SD) Blob
|
||||
|
||||
see [[manifest]] The initial blob of a stream, which contains encryption information as well as points to other blobs required for a stream.
|
||||
Same as [[manifest]] The initial blob of a stream, it contains encryption information and points to other blobs required for the stream.
|
||||
|
||||
### Stream Hash
|
||||
|
||||
|
@ -342,11 +346,11 @@ Found in the [[manifest]], this is the cryptographic key needed to decrypt the c
|
|||
|
||||
### Support (Claim Support)
|
||||
|
||||
A support is a wallet send transaction that includes claim information, which results in adding to a claim's effective amount. A tip is a special type of support that is sent from one wallet to another, so that the receiver can send it to their own wallet.
|
||||
Same as [[Claim Support]]. A support is a wallet send transaction that includes claim information, which results in adding to a claim's effective amount. A tip is a special type of support that is sent from one wallet to another, so that the receiver can send it to their own wallet.
|
||||
|
||||
### Takeover Period
|
||||
|
||||
In order to take over a claim at an existing vanity URL, the bid must be higher and the takeover period must pass. In simple terms, the longer the claim is held, the longer the takeover period. For each month held, a day is added to the takeover period for a maximum of 7 days. See [Claimtrie Bid States section here](https://lbry.io/faq/claimtrie-implementation) for more information.
|
||||
In order to take over a claim at an existing vanity URL, the bid must be higher and the takeover period must pass. In simple terms, the longer the claim is held, the longer the takeover period. For each month held, a day is added to the takeover period for a maximum of 7 days. See [controlling claims](https://spec.lbry.io/#controlling) in the specification, and [Claimtrie Bid States section here](https://lbry.io/faq/claimtrie-implementation) for more information.
|
||||
|
||||
### Target
|
||||
|
||||
|
|
|
@ -14,4 +14,5 @@ Interested in creating one for a language not shown below? See our [bounties pag
|
|||
| Lua | [ocornoc](https://github.com/ocornoc/) | [lualbry](https://github.com/ocornoc/luabry) | Completed |
|
||||
| PHP | [lyoshenka](https://github.com/lyoshenka/) | [php-api](https://github.com/lbryio/php-api) | Completed |
|
||||
| Ruby | [dan1d](https://github.com/dan1d) | [lbry-api-ruby](https://github.com/dan1d/lbry-api-ruby) / [Ruby Gem](https://rubygems.org/gems/lbry) | Completed |
|
||||
| Rust | [dlight](https://github.com/dlight) | [lbry-rs](https://github.com/dlight/lbry-rs) | In progress |
|
||||
| Rust | [zxawry](https://github.com/zxawry) | [lbry-rs](https://github.com/zxawry/lbry-rs) | Completed |
|
||||
| Dart | [osilkin98](https://github.com/osilkin98) | [lbrydart](https://github.com/osilkin98/lbrydart) | Completed |
|
||||
|
|
|
@ -72,5 +72,5 @@ Configuration options are organized by their respective areas: Files, Wallet, Ne
|
|||
### Other
|
||||
| Setting | Format | Default value | Sample Values | Description |
|
||||
|--------------------|---------|---------------|--------------------------------|---------------------------------------------------------------------------------------------------------------|
|
||||
| components_to_skip | list | [] | ['reflector','hash_announcer'] | Disabe components, [see entire list here](https://github.com/lbryio/lbry/wiki/Component-Dependencies-Table) |
|
||||
| components_to_skip | list | [] | ['reflector','hash_announcer'] | Disable components, [see entire list here](https://github.com/lbryio/lbry/wiki/Component-Dependencies-Table) |
|
||||
| share_usage_data | boolean | true | false | Share analytics data |
|
||||
|
|
18
package.json
18
package.json
|
@ -3,7 +3,7 @@
|
|||
"dependencies": {
|
||||
"@babel/polyfill": "^7.2.5",
|
||||
"@inc/fastify-ws": "^1.1.0",
|
||||
"@octokit/rest": "^16.10.0",
|
||||
"@octokit/rest": "^16.13.1",
|
||||
"@slack/client": "^4.8.0",
|
||||
"app-root-path": "^2.1.0",
|
||||
"async": "^2.6.1",
|
||||
|
@ -42,8 +42,8 @@
|
|||
"@babel/cli": "^7.2.3",
|
||||
"@babel/core": "^7.2.2",
|
||||
"@babel/plugin-external-helpers": "7.2.0",
|
||||
"@babel/plugin-proposal-class-properties": "7.2.3",
|
||||
"@babel/plugin-proposal-decorators": "7.2.3",
|
||||
"@babel/plugin-proposal-class-properties": "7.3.0",
|
||||
"@babel/plugin-proposal-decorators": "7.3.0",
|
||||
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
|
||||
"@babel/plugin-proposal-function-sent": "7.2.0",
|
||||
"@babel/plugin-proposal-json-strings": "7.2.0",
|
||||
|
@ -51,22 +51,22 @@
|
|||
"@babel/plugin-proposal-throw-expressions": "7.2.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "7.2.0",
|
||||
"@babel/plugin-syntax-import-meta": "7.2.0",
|
||||
"@babel/preset-env": "^7.2.3",
|
||||
"@babel/preset-env": "^7.3.1",
|
||||
"@babel/register": "^7.0.0",
|
||||
"@inc/eslint-config": "^1.1.2",
|
||||
"@inc/sasslint-config": "^1.1.2",
|
||||
"@lbry/color": "^1.1.0",
|
||||
"@lbry/components": "^1.8.0",
|
||||
"eslint": "^5.12.0",
|
||||
"@lbry/components": "^1.8.1",
|
||||
"eslint": "^5.12.1",
|
||||
"husky": "^1.3.1",
|
||||
"nodemon": "^1.18.9",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"pino-pretty": "^2.5.0",
|
||||
"sass": "^1.16.0",
|
||||
"sass": "^1.16.1",
|
||||
"sass-lint": "^1.12.1",
|
||||
"snazzy": "^8.0.0",
|
||||
"standardx": "^3.0.1",
|
||||
"updates": "^6.0.3"
|
||||
"updates": "^6.2.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10.2 <10.15.1"
|
||||
|
@ -96,5 +96,5 @@
|
|||
"app/dist"
|
||||
]
|
||||
},
|
||||
"version": "3.4.0"
|
||||
"version": "3.5.1"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue