2a3cb42baa
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.7.3 to 5.8.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.7.3...v5.8.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
148 lines
3.3 KiB
JSON
148 lines
3.3 KiB
JSON
{
|
|
"name": "music-metadata",
|
|
"description": "Music metadata parser for Node.js, supporting virtual any audio and tag format.",
|
|
"version": "11.0.0",
|
|
"author": {
|
|
"name": "Borewit",
|
|
"url": "https://github.com/Borewit"
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/Borewit"
|
|
},
|
|
{
|
|
"type": "buymeacoffee",
|
|
"url": "https://buymeacoffee.com/borewit"
|
|
}
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
"node": {
|
|
"import": "./lib/index.js",
|
|
"module-sync": "./lib/index.js",
|
|
"types": "./lib/index.d.ts"
|
|
},
|
|
"default": {
|
|
"import": "./lib/core.js",
|
|
"module-sync": "./lib/core.js",
|
|
"types": "./lib/core.d.ts"
|
|
}
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/**/*.js",
|
|
"lib/**/*.d.ts"
|
|
],
|
|
"keywords": [
|
|
"music",
|
|
"metadata",
|
|
"meta",
|
|
"audio",
|
|
"tag",
|
|
"tags",
|
|
"duration",
|
|
"MusicBrainz",
|
|
"Discogs",
|
|
"Picard",
|
|
"ID3",
|
|
"ID3v1",
|
|
"ID3v2",
|
|
"m4a",
|
|
"m4b",
|
|
"mp3",
|
|
"mp4",
|
|
"Vorbis",
|
|
"ogg",
|
|
"flac",
|
|
"Matroska",
|
|
"WebM",
|
|
"EBML",
|
|
"asf",
|
|
"wma",
|
|
"wmv",
|
|
"ape",
|
|
"MonkeyAudio",
|
|
"aiff",
|
|
"wav",
|
|
"WavPack",
|
|
"Opus",
|
|
"speex",
|
|
"musepack",
|
|
"mpc",
|
|
"dsd",
|
|
"dsf",
|
|
"mpc",
|
|
"dff",
|
|
"dsdiff",
|
|
"aac",
|
|
"adts",
|
|
"length",
|
|
"chapter",
|
|
"info",
|
|
"parse",
|
|
"parser",
|
|
"bwf",
|
|
"slt",
|
|
"lyrics"
|
|
],
|
|
"scripts": {
|
|
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map' 'test/**/*.js' 'test/**/*.js.map' 'doc-gen/**/*.js' 'doc-gen/**/*.js.map'",
|
|
"compile-src": "tsc -p lib",
|
|
"compile-test": "tsc -p test",
|
|
"compile-doc": "tsc -p doc-gen",
|
|
"compile": "yarn run compile-src && yarn compile-test && yarn compile-doc",
|
|
"lint-ts": "biome check",
|
|
"lint-md": "yarn run remark -u remark-preset-lint-consistent .",
|
|
"lint": "yarn run lint-ts && yarn run lint-md",
|
|
"test": "mocha",
|
|
"build": "yarn run clean && yarn compile && yarn run doc-gen",
|
|
"test-coverage": "c8 yarn run test",
|
|
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
|
|
"doc-gen": "yarn node doc-gen/gen.js"
|
|
},
|
|
"dependencies": {
|
|
"@tokenizer/token": "^0.3.0",
|
|
"content-type": "^1.0.5",
|
|
"debug": "^4.4.0",
|
|
"file-type": "^19.6.0",
|
|
"link": "^2.1.1",
|
|
"media-typer": "^1.1.0",
|
|
"strtok3": "^10.2.1",
|
|
"token-types": "^6.0.0",
|
|
"uint8array-extras": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@types/chai": "^5.0.1",
|
|
"@types/chai-as-promised": "^8.0.1",
|
|
"@types/content-type": "^1.1.8",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/media-typer": "^1.1.3",
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "^22.13.4",
|
|
"c8": "^10.1.3",
|
|
"chai": "^5.2.0",
|
|
"chai-as-promised": "^8.0.1",
|
|
"del-cli": "^6.0.0",
|
|
"mime": "^4.0.6",
|
|
"mocha": "^11.1.0",
|
|
"node-readable-to-web-readable-stream": "^0.3.1",
|
|
"remark-cli": "^12.0.1",
|
|
"remark-preset-lint-consistent": "^6.0.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"repository": {
|
|
"type": "https://github.com/borewit/music-metadata.git"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Borewit/music-metadata/issues"
|
|
},
|
|
"packageManager": "yarn@4.6.0"
|
|
}
|