apple-music-metadata
Version:
gets apple music metadata for songs, albums and playlists links
69 lines (68 loc) • 1.69 kB
JSON
{
"name": "apple-music-metadata",
"version": "2.0.1",
"description": "gets apple music metadata for songs, albums and playlists links",
"keywords": [
"typescript",
"music",
"apple music",
"apple music metadata"
],
"homepage": "https://github.com/Night-Hunter-NF/apple-music-metadata",
"repository": {
"type": "git",
"url": "https://github.com/Night-Hunter-NF/apple-music-metadata"
},
"license": "MIT",
"contributors": [
"Night_Hunter",
"Harry <indianoceanroleplay@gmail.com> (https://github.com/oceanroleplay)"
],
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
}
},
"files": [
"build",
"LICENSE",
"README.md",
"package.json"
],
"type": "module",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:cjs": "tsc --module CommonJs --outDir build/cjs",
"build:esm": "tsc",
"postbuild": "node postbuild.js",
"start": "ts-node ./src/index.ts",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"transform": {
".(ts|tsx)": "ts-jest"
}
},
"dependencies": {
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"jest": "^28.0.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
}
}