From 78aa02c8e618e922a142a2f72ca4e29c50301e11 Mon Sep 17 00:00:00 2001 From: Vortex Date: Fri, 8 Mar 2024 08:25:59 -0600 Subject: [PATCH] Renamed from fs-iso to iso --- package-lock.json | 4 ++-- package.json | 8 ++++---- readme.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9d221e3..484dcf3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@browserfs/fs-iso", + "name": "@browserfs/iso", "version": "0.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "@browserfs/fs-iso", + "name": "@browserfs/iso", "version": "0.0.2", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 304f604..47422ee 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@browserfs/fs-iso", + "name": "@browserfs/iso", "version": "0.0.2", "description": "Zip backend for BrowserFS", "main": "dist/index.js", @@ -10,15 +10,15 @@ "storage" ], "type": "module", - "homepage": "https://github.com/browser-fs/fs-iso", + "homepage": "https://github.com/browser-fs/iso", "author": "dr-vortex ", "license": "MIT", "repository": { "type": "git", - "url": "git+https://github.com/browser-fs/fs-iso.git" + "url": "git+https://github.com/browser-fs/iso.git" }, "bugs": { - "url": "https://github.com/browser-fs/fs-iso/issues" + "url": "https://github.com/browser-fs/iso/issues" }, "engines": { "node": ">= 18" diff --git a/readme.md b/readme.md index a3616f3..e578938 100644 --- a/readme.md +++ b/readme.md @@ -8,12 +8,12 @@ Please read the BrowserFS documentation! This package adds `IsoFS`, which allows you to create a *readonly* file system from a iso file. -For more information, see the [API documentation](https://browser-fs.github.io/fs-iso). +For more information, see the [API documentation](https://browser-fs.github.io/iso). ## Installing ```sh -npm install @browserfs/fs-iso +npm install @browserfs/iso ``` ## Usage @@ -24,7 +24,7 @@ You can't use IsoFS on its own. You must import the core in order to use the bac ```js import { configure, fs, registerBackend } from '@browserfs/core'; -import { IsoFS } from '@browserfs/fs-iso'; +import { IsoFS } from '@browserfs/iso'; registerBackend(IsoFS); const res = await fetch('http://example.com/image.iso');