-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 735 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 735 Bytes
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
{
"name": "@mo3moha/relay",
"version": "0.1.0",
"description": "DJ library bridge. Convert between Rekordbox, Traktor, and M3U.",
"type": "module",
"bin": {
"relay": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsx src/index.ts",
"test": "vitest run"
},
"keywords": ["dj", "rekordbox", "traktor", "serato", "playlist", "converter", "cli", "music"],
"author": "moha",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fast-xml-parser": "^5.2.3"
},
"devDependencies": {
"@types/node": "^22",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vitest": "^3.2.1"
}
}