123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {
- "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": "[email protected]"
- },
- "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/*"
- ]
- }
- }
|