1
0
mirror of synced 2026-05-22 14:43:19 +00:00
Files

157 lines
3.9 KiB
JSON
Raw Permalink Normal View History

2010-11-10 22:16:21 +00:00
{
2016-11-15 18:15:17 +01:00
"name": "music-metadata",
2021-03-10 04:49:28 +00:00
"description": "Music metadata parser for Node.js, supporting virtual any audio and tag format.",
2026-03-12 19:35:04 +01:00
"version": "11.12.3",
2017-08-12 22:08:59 +02:00
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
2024-07-16 19:05:46 +02:00
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/borewit"
}
],
2025-04-01 20:08:05 +02:00
"sideEffects": false,
2022-01-27 15:40:10 +01:00
"type": "module",
"exports": {
2025-02-15 15:04:11 +01:00
"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"
2022-01-27 15:40:10 +01:00
}
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
2025-02-17 16:11:32 +01:00
"lib/**/*.d.ts"
2022-01-27 15:40:10 +01:00
],
2017-08-12 22:08:59 +02:00
"keywords": [
"music",
"metadata",
"meta",
"audio",
2017-08-12 22:08:59 +02:00
"tag",
"tags",
2019-09-06 07:51:20 +02:00
"duration",
2017-08-12 22:08:59 +02:00
"MusicBrainz",
"Discogs",
2017-08-12 22:08:59 +02:00
"Picard",
2018-02-24 20:16:42 +01:00
"ID3",
2017-08-12 22:08:59 +02:00
"ID3v1",
"ID3v2",
"m4a",
2019-11-17 21:42:28 +01:00
"m4b",
2017-08-12 22:08:59 +02:00
"mp3",
"mp4",
"Vorbis",
"ogg",
"flac",
2019-12-17 21:00:23 +01:00
"Matroska",
"WebM",
"EBML",
2017-08-12 22:08:59 +02:00
"asf",
"wma",
"wmv",
"ape",
"MonkeyAudio",
"aiff",
"wav",
"WavPack",
2018-09-15 10:54:57 +02:00
"Opus",
"speex",
"musepack",
2019-04-06 20:29:33 +02:00
"mpc",
"dsd",
"dsf",
"mpc",
2019-04-07 21:02:58 +02:00
"dff",
"dsdiff",
"aac",
2019-09-06 07:51:20 +02:00
"adts",
2019-11-17 21:42:28 +01:00
"length",
2019-12-22 09:07:12 +01:00
"chapter",
"info",
"parse",
"parser",
2024-11-10 16:44:56 +01:00
"bwf",
"slt",
2026-01-05 15:42:41 +01:00
"lyrics",
"Chapters",
"ID3v2 Chapters"
2017-08-12 22:08:59 +02:00
],
"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'",
2026-02-16 19:29:48 +01:00
"compile-src:dev": "tsc -p lib/tsconfig.json",
"compile-src:prod": "tsc -p lib/tsconfig.prod.json",
"compile-test": "tsc -p test",
"compile-doc": "tsc -p doc-gen",
2026-02-16 19:29:48 +01:00
"compile:dev": "yarn run compile-src:dev && yarn compile-test && yarn compile-doc",
"compile:prod": "yarn run compile-src:prod && yarn compile-test && yarn compile-doc",
2025-07-20 09:56:55 +02:00
"lint:ts": "biome check",
2025-06-26 20:00:51 +02:00
"lint:md": "yarn run remark -u remark-preset-lint-consistent .",
"lint": "yarn run lint:ts && yarn run lint:md",
2022-01-27 15:40:10 +01:00
"test": "mocha",
2026-02-16 19:29:48 +01:00
"build:dev": "yarn run clean && yarn compile:dev && yarn run doc-gen",
"build:prod": "yarn run clean && yarn compile:prod && yarn run doc-gen",
"build": "yarn run build:prod",
2026-03-11 17:27:53 +01:00
"prepublishOnly": "yarn run build:prod",
2024-08-02 12:35:05 +02:00
"test-coverage": "c8 yarn run test",
2022-01-27 15:40:10 +01:00
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
2025-03-29 17:11:25 +02:00
"doc-gen": "yarn node doc-gen/gen.js",
2025-07-16 11:19:39 +02:00
"typecheck": "tsc --project ./lib/tsconfig.json --noEmit && tsc --project ./test/tsconfig.json --noEmit",
"update-biome": "yarn add -D --exact @biomejs/biome && npx @biomejs/biome migrate --write"
},
2017-06-26 11:43:25 +02:00
"dependencies": {
"@borewit/text-codec": "^0.2.2",
2022-01-28 14:15:02 +01:00
"@tokenizer/token": "^0.3.0",
2023-01-30 06:18:57 +00:00
"content-type": "^1.0.5",
2025-09-15 06:32:42 +00:00
"debug": "^4.4.3",
2026-03-23 06:04:00 +00:00
"file-type": "^21.3.4",
"media-typer": "^1.1.0",
2026-03-26 16:16:25 +00:00
"strtok3": "^10.3.5",
2026-01-01 14:45:07 +00:00
"token-types": "^6.1.2",
"uint8array-extras": "^1.5.0",
2026-01-29 08:54:00 +00:00
"win-guid": "^0.2.1"
2017-06-26 11:43:25 +02:00
},
2011-08-08 11:54:42 +01:00
"devDependencies": {
2026-03-11 21:54:45 +01:00
"@biomejs/biome": "2.4.6",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/content-type": "^1.1.9",
2023-11-09 06:56:34 +00:00
"@types/debug": "^4.1.12",
2024-08-08 10:19:14 +02:00
"@types/media-typer": "^1.1.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
2026-03-11 17:28:28 +00:00
"c8": "^11.0.0",
2025-12-23 06:04:17 +00:00
"chai": "^6.2.2",
2025-09-15 16:02:36 +00:00
"chai-as-promised": "^8.0.2",
2025-09-19 06:05:32 +00:00
"del-cli": "^7.0.0",
2025-09-15 07:11:49 +00:00
"mime": "^4.1.0",
2025-11-05 06:04:33 +00:00
"mocha": "^11.7.5",
"node-readable-to-web-readable-stream": "^0.4.2",
2024-06-30 17:54:33 +08:00
"remark-cli": "^12.0.1",
"remark-preset-lint-consistent": "^6.0.1",
2024-06-30 17:54:33 +08:00
"ts-node": "^10.9.2",
2025-10-01 06:06:13 +00:00
"typescript": "^5.9.3"
2011-08-08 11:54:42 +01:00
},
"engines": {
2025-01-30 15:14:28 +01:00
"node": ">=18"
},
2025-05-18 20:20:33 +02:00
"repository": "github:Borewit/music-metadata",
2015-03-24 23:12:16 +00:00
"license": "MIT",
2016-11-27 15:35:11 +01:00
"bugs": {
"url": "https://github.com/Borewit/music-metadata/issues"
2024-07-16 19:30:42 +02:00
},
2025-06-26 20:52:13 +02:00
"packageManager": "yarn@4.9.2"
2013-04-29 14:47:20 +01:00
}