spotify-api-lib
Version:
A modern, TypeScript-first wrapper for the Spotify Web API with organized endpoint categories and full type safety
87 lines (86 loc) • 1.94 kB
JSON
{
"name": "spotify-api-lib",
"version": "1.1.0",
"description": "A modern, TypeScript-first wrapper for the Spotify Web API with organized endpoint categories and full type safety",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"typecheck": "tsc --noEmit"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
}
},
"keywords": [
"spotify",
"api",
"music",
"typescript",
"web-api",
"spotify-web-api",
"playlists",
"tracks",
"albums",
"artists",
"player",
"search",
"oauth",
"streaming"
],
"author": {
"name": "Caleb Price",
"url": "https://github.com/shinyczxx"
},
"license": "MIT",
"homepage": "https://github.com/shinyczxx/spotify-api-lib#readme",
"repository": {
"type": "github",
"url": "https://github.com/shinyczxx/spotify-api-lib"
},
"bugs": {
"url": "https://github.com/shinyczxx/spotify-api-lib/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"tsup": "^8.5.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"axios": "^1.0.0"
},
"dependencies": {
"axios": "^1.0.0"
}
}