feat: the app

This commit is contained in:
2025-11-04 20:11:53 +01:00
commit f712c84a2e
11 changed files with 4307 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "linkding",
"version": "1.0.0",
"description": "A modern link bookmarking app with metadata extraction",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"bookmark",
"links",
"scraping"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"express": "^4.18.2",
"puppeteer-core": "^22.15.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}