diff --git a/package.json b/package.json index f6baa54..e34674b 100644 --- a/package.json +++ b/package.json @@ -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": [ @@ -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": { diff --git a/readme.md b/readme.md index 0e75ae5..57c819c 100644 --- a/readme.md +++ b/readme.md @@ -8,19 +8,19 @@ 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). @@ -28,7 +28,7 @@ This module requires Git >= 1.9, Node >= 16 and package [protocol-land-remote-he ## Basic Usage ```js -var plpages = require('pl-pages'); +var plpages = require('@protocol.land/pages'); plpages.publish('dist', function(err) {}); ```