{ "name": "geniurl", "version": "2.0.0", "description": "Simple JSON and XML REST API to search for song metadata, the lyrics URL and lyrics translations on genius.com", "main": "src/index.ts", "type": "module", "scripts": { "dev": "nodemon -e \"ts,d.ts,json\" -x \"pnpm start\"", "start": "tsx src/index.ts", "dev-www": "cd www && pnpm run dev", "build-www": "cd www && pnpm run build", "dev-all": "concurrently \"pnpm dev\" \"pnpm dev-www\"", "lint": "eslint . && tsc --noEmit", "format": "eslint --fix .", "gen-token": "node --import tsx src/tools/gen-token.ts", "run-unit-tests": "jest --testLocationInResults --verbose", "run-latency-test": "node --import tsx src/tools/latency-test.ts", "test": "start-server-and-test start http://127.0.0.1:8074/v2/health run-unit-tests", "latency-test": "start-server-and-test start http://127.0.0.1:8074/v2/health run-latency-test" }, "repository": { "type": "git", "url": "git+https://github.com/Sv443/geniURL.git" }, "keywords": [ "rest-api", "lyrics", "lyrics-search", "song-metadata" ], "author": { "name": "Sv443", "url": "https://github.com/Sv443", "email": "contact@sv443.net" }, "license": "MIT", "bugs": { "url": "https://github.com/Sv443/geniURL/issues" }, "homepage": "https://github.com/Sv443/geniURL", "engines": { "node": ">=16", "pnpm": ">=9" }, "dependencies": { "axios": "^1.7.9", "compression": "^1.7.5", "cors": "^2.8.5", "express": "^4.21.2", "helmet": "^7.2.0", "js2xmlparser": "^5.0.0", "kleur": "^4.1.5", "nanoid": "^3.3.8", "rate-limiter-flexible": "^2.4.2", "request-ip": "^3.3.0", "svcorelib": "^1.18.2", "tcp-port-used": "^1.0.2", "tsx": "^4.19.2", "typescript": "^5.7.3" }, "devDependencies": { "@eslint/eslintrc": "^3.2.0", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/jest": "^29.5.14", "@types/node": "^20.17.16", "@types/request-ip": "^0.0.41", "@types/tcp-port-used": "^1.0.4", "@typescript-eslint/eslint-plugin": "^8.21.0", "@typescript-eslint/parser": "^8.21.0", "@typescript-eslint/utils": "^8.21.0", "@vuepress/plugin-seo": "2.0.0-rc.3", "@vuepress/plugin-sitemap": "2.0.0-rc.3", "concurrently": "^9.1.2", "dotenv": "^16.4.7", "eslint": "^9.18.0", "fast-xml-parser": "^4.5.1", "globals": "^15.14.0", "jest": "^29.7.0", "nodemon": "^3.1.9", "percentile": "^1.6.0", "pnpm": "^9.15.4", "start-server-and-test": "^2.0.10", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "tslib": "^2.8.1" }, "nodemonConfig": { "watch": [ "src/**", "www/**", ".env", "package.json" ], "ext": "ts,mts,js,jsx,mjs,json,html,css,svg,png", "ignore": [ "*/dist/*", "*/dev/*", "*/out/*" ] } }