-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.67 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
{
"name": "metadata-connect",
"version": "1.1.6",
"description": "Extract audio metadata (title, artist, album, BPM, key, artwork) from MP3, M4A, FLAC, and AIFF files with minimal network transfer using partial file reads",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"keywords": [
"metadata",
"audio",
"music",
"id3",
"id3v2",
"mp4",
"m4a",
"flac",
"aiff",
"mp3",
"aac",
"artwork",
"cover",
"album-art",
"bpm",
"tempo",
"key",
"genre",
"parser",
"extractor",
"dj",
"streaming",
"partial-read",
"network"
],
"author": "Chris Le <chris@triodemusic.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisle/metadata-connect.git"
},
"homepage": "https://github.com/chrisle/metadata-connect#readme",
"bugs": {
"url": "https://github.com/chrisle/metadata-connect/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^22.15.29",
"@vitest/coverage-v8": "^4.0.16",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"overrides": {
"rollup": ">=4.59.0"
}
}