Skip to content

Commit

Permalink
chore(app): releasing to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
amjedidiah committed Jan 30, 2025
1 parent dff1313 commit b5b3e67
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 129 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @bassem97/upup
# @amjedidiah/upup

## 2.4.0
## 1.0.1

### Minor Changes

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ Install upup with your favourite package manager
### npm

```bash
npm install @bassem97/upup
npm install @amjedidiah/upup
```

### yarn

```bash
yarn add @bassem97/upup
yarn add @amjedidiah/upup
```

### pnpm

```bash
pnpm add @bassem97/upup
pnpm add @amjedidiah/upup
```

### bun

```bash
bun install @bassem97/upup
bun install @amjedidiah/upup
```

## Logic Diagram
Expand Down Expand Up @@ -71,7 +71,7 @@ The example below shows a minimal configuration for AWS S3 upload, using the [Up
### Client Side

```tsx
import { UpupUploader, UpupProvider } from '@bassem97/upup'
import { UpupUploader, UpupProvider } from '@amjedidiah/upup'

export default function Uploader() {
return (
Expand Down Expand Up @@ -108,7 +108,7 @@ export default function App() {
### Server Side

```ts
import { s3GeneratePresignedUrl } from '@bassem97/upup/server'
import { s3GeneratePresignedUrl } from '@amjedidiah/upup/server'

app.post('/api/upload-token', async (req, res) => {
try {
Expand Down
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"name": "@bassem97/upup",
"author": "Bassem Jadoui",
"name": "@amjedidiah/upup",
"author": "Jedidiah Amaraegbu",
"license": "MIT",
"version": "2.4.0",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"readme": "README.md",
"main": "dist/index.js",
"module": "dist/upup.esm.js",
Expand Down Expand Up @@ -33,7 +36,7 @@
"browser": "./dist/upup.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/DevinoSolutions/upup.git"
"url": "git+https://github.com/amjedidiah/upup.git"
},
"packageManager": "pnpm@8.10.5",
"keywords": [
Expand Down Expand Up @@ -104,8 +107,8 @@
"@tailwindcss/container-queries": "^0.1.1",
"@types/node": "^20.10.0",
"@types/pako": "^2.0.3",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/react": ">=16.8.0",
"@types/react-dom": ">=16.8.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
Expand All @@ -124,8 +127,8 @@
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-syntax-highlighter": "15.4.5",
"remark-gfm": "^4.0.0",
"rollup-plugin-analyzer": "^4.0.0",
Expand Down Expand Up @@ -165,8 +168,8 @@
"uuid": "^9.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"pnpm": {
"overrides": {
Expand All @@ -181,8 +184,6 @@
}
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.68.0"
}
}
Loading

0 comments on commit b5b3e67

Please sign in to comment.