feat: update package.json for Palmr v2.1-beta release

- Updated version to "2.1-beta" for both server and frontend applications.
- Changed project names to "palmr-api" and "palmr-frontend".
- Added descriptions, author information, keywords, and license details.
- Specified package manager version as "pnpm@10.6.0" for both applications.
This commit is contained in:
Daniel Luiz Alves
2025-05-30 14:09:16 -03:00
parent 4b57a03311
commit 2276ed5bd6
2 changed files with 28 additions and 8 deletions

View File

@@ -1,7 +1,19 @@
{ {
"name": "palmr-api", "name": "palmr-api",
"version": "1.1.6", "version": "2.1-beta",
"description": "", "description": "API for Palmr",
"private": true,
"author": "Daniel Luiz Alves <daniel@kyantech.com.br>",
"keywords": [
"palmr",
"api",
"backend",
"server",
"nodejs",
"typescript"
],
"license": "BSD-2-Clause",
"packageManager": "pnpm@10.6.0",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"dev": "tsx watch src/server.ts", "dev": "tsx watch src/server.ts",
@@ -16,9 +28,6 @@
"prisma": { "prisma": {
"seed": "node prisma/seed.js" "seed": "node prisma/seed.js"
}, },
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": { "dependencies": {
"@aws-sdk/client-s3": "^3.817.0", "@aws-sdk/client-s3": "^3.817.0",
"@aws-sdk/s3-request-presigner": "^3.817.0", "@aws-sdk/s3-request-presigner": "^3.817.0",

View File

@@ -1,7 +1,18 @@
{ {
"name": "palmr-app-v2", "name": "palmr-frontend",
"version": "2.0.0", "version": "2.1-beta",
"description": "Frontend for Palmr",
"private": true, "private": true,
"author": "Daniel Luiz Alves <daniel@kyantech.com.br>",
"keywords": [
"palmr",
"frontend",
"nextjs",
"react",
"typescript"
],
"license": "BSD-2-Clause",
"packageManager": "pnpm@10.6.0",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",
@@ -65,4 +76,4 @@
"tailwindcss": "4.1.2", "tailwindcss": "4.1.2",
"typescript": "5.8.2" "typescript": "5.8.2"
} }
} }