Files
MusicMetaFinder/package.json
xtrullor73 a97736abee refactor: remove AuDD references and unused project files
Removed all files, dependencies, and mentions related to the AuDD API. Cleaned up the src directory, removing all non-developed or unused items, as part of a major cleanup. This change is due to the strategic shift towards using audio fingerprinting for song recognition, as opposed to sending the raw audio file itself.
2024-05-09 23:40:46 -07:00

28 lines
732 B
JSON

{
"name": "music-meta-finder",
"version": "1.0.0",
"description": "CLI utility for music enthusiasts to automatically recognize tracks and enrich file metadata based on the fetched information.",
"bin": {
"analyze-audio": "node --env-file .env ./app.js"
},
"dependencies": {
"axios": "^1.6.8",
"chromaprint": "^0.1.0",
"dotenv": "^16.4.5",
"qs": "^6.12.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.0.0"
},
"scripts": {
"lint": "eslint . --fix",
"analyze": "node --env-file .env app.js"
},
"type": "module"
}