fix(config): Customize details in package.json

This commit is contained in:
buzzcode2007 2025-03-21 06:18:34 +00:00
parent 711a8bc299
commit 19f55bfaa2

View file

@ -1,16 +1,25 @@
{ {
"name": "shorturl", "name": "shorturl",
"version": "0.0.3", "version": "0.0.1",
"description": "API project for freeCodeCamp", "description": "A FOSS link shortener for your own! (based on FCC's curriculum)",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"start": "node index.js" "start": "node --watch index.js"
}, },
"repository": {
"type": "git",
"url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener.git"
},
"bugs": {
"url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener/issues"
},
"homepage": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener#readme",
"dependencies": { "dependencies": {
"body-parser": "^1.19.0", "body-parser": "^1.19.0",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"express": "^4.17.1" "express": "^4.17.1",
"mongoose": "^5.11.15"
}, },
"license": "MIT" "license": "BSD"
} }