Skip to content

Commit

Permalink
chore: Update package name in package.json and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Jan 18, 2024
1 parent 624a8ed commit b13e9dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "pl-pages",
"name": "@protocol.land/pages",
"version": "0.1.2",
"description": "Publish files to a `pl-pages` or any other branch on Protocol.Land and deploy the app to Arweave",
"keywords": [
Expand All @@ -9,13 +9,13 @@
],
"author": "pawanpaudel93",
"license": "MIT",
"homepage": "https://github.com/pawanpaudel93/pl-pages",
"homepage": "https://github.com/labscommunity/pl-pages",
"repository": {
"type": "git",
"url": "git://github.com/pawanpaudel93/pl-pages.git"
"url": "git://github.com/labscommunity/pl-pages.git"
},
"bugs": {
"url": "https://github.com/pawanpaudel93/pl-pages/issues"
"url": "https://github.com/labscommunity/pl-pages/issues"
},
"main": "lib/index.js",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ Publish files to a `pl-pages` or any other branch on [Protocol Land](http://prot
Install `pl-pages` as a dev dependency using one of your preferred package manager. And, also install the [Protocol Land remote helper](https://github.com/labscommunity/protocol-land-remote-helper) for this package to work properly.

```shell
npm install pl-pages --save-dev
npm install @protocol.land/pages --save-dev
```

```shell
yarn add pl-pages --dev
yarn add @protocol.land/pages --dev
```

```shell
pnpm add pl-pages --save-dev
pnpm add @protocol.land/pages --save-dev
```

```shell
bun install pl-pages --dev
bun install @protocol.land/pages --dev
```

This module requires Git >= 1.9, Node >= 16 and package [protocol-land-remote-helper](https://github.com/labscommunity/protocol-land-remote-helper).

## Basic Usage

```js
var plpages = require('pl-pages');
var plpages = require('@protocol.land/pages');

plpages.publish('dist', function(err) {});
```
Expand Down

0 comments on commit b13e9dd

Please sign in to comment.