-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 3.93 KB
/
package.json
File metadata and controls
156 lines (156 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "music-metadata",
"description": "Music metadata parser for Node.js, supporting virtual any audio and tag format.",
"version": "11.12.3",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/borewit"
}
],
"sideEffects": false,
"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",
"Chapters",
"ID3v2 Chapters"
],
"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: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",
"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",
"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: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",
"prepublishOnly": "yarn run build:prod",
"test-coverage": "c8 yarn run test",
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
"doc-gen": "yarn node doc-gen/gen.js",
"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"
},
"dependencies": {
"@borewit/text-codec": "^0.2.2",
"@tokenizer/token": "^0.3.0",
"content-type": "^1.0.5",
"debug": "^4.4.3",
"file-type": "^21.3.4",
"media-typer": "^1.1.0",
"strtok3": "^10.3.5",
"token-types": "^6.1.2",
"uint8array-extras": "^1.5.0",
"win-guid": "^0.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/content-type": "^1.1.9",
"@types/debug": "^4.1.12",
"@types/media-typer": "^1.1.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.0",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"del-cli": "^7.0.0",
"mime": "^4.1.0",
"mocha": "^11.7.5",
"node-readable-to-web-readable-stream": "^0.4.2",
"remark-cli": "^12.0.1",
"remark-preset-lint-consistent": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"repository": "github:Borewit/music-metadata",
"license": "MIT",
"bugs": {
"url": "https://github.com/Borewit/music-metadata/issues"
},
"packageManager": "yarn@4.9.2"
}