lastfm-api-lib
Version:
A TypeScript library for interacting with the Last.fm API
44 lines • 1.06 kB
JSON
{
"name": "lastfm-api-lib",
"version": "1.1.0",
"author": "Caleb Price",
"description": "A TypeScript library for interacting with the Last.fm API",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"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"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"keywords": ["lastfm", "api", "music", "typescript"],
"license": "MIT",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.0.0"
},
"homepage": "https://github.com/shinyczxx/lastfm-api-lib#readme",
"repository": {
"type": "github",
"url": "https://github.com/shinyczxx/lastfm-api-lib"
},
"bugs": {
"url": "https://github.com/shinyczxx/lastfm-api-lib/issues"
}
}