Yeah, here's the app

This commit is contained in:
2025-12-22 14:13:02 -05:00
commit 21f990f4d1
6 changed files with 434 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "spoti-cleaner",
"version": "1.0.0",
"description": "",
"main": "app/index.js",
"bin": "app/index.js",
"scripts": {
"start": "node app/index.js",
"build": "pkg --targets node18-win-x64 --debug ."
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.19.0",
"dependencies": {
"dotenv": "^17.2.3",
"music-metadata": "^11.9.0",
"os": "^0.1.2"
},
"pkg": {
"targets": [
"node8"
]
}
}