-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "@tanem/mtt",
"version": "1.0.54",
"description": ".(m)3u8 (t)o (t)racklist",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.base.json",
"postbuild": "shx mv dist/src/* dist && shx rm -r dist/src dist/package.json",
"check": "prettier --list-different \"**/*.{js,ts}\"",
"clean": "shx rm -rf dist",
"preexample": "npm run build",
"example": "node example/index.js",
"format": "prettier --write \"**/*.{js,ts}\"",
"lint": "eslint .",
"release": "tanem-scripts release",
"test": "jest"
},
"author": "Tane Morgan (https://github.com/tanem)",
"license": "MIT",
"bin": {
"mtt": "dist/cli.js"
},
"files": [
"dist"
],
"keywords": [
"cli",
"dj",
"export",
"m3u8",
"playlist",
"rekordbox",
"tracklist",
"tracks",
"usb"
],
"dependencies": {
"commander": "^14.0.3"
},
"devDependencies": {
"@tsconfig/node16": "16.1.8",
"@types/jest": "30.0.0",
"@types/node": "24.11.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "30.2.0",
"prettier": "3.8.1",
"shx": "0.4.0",
"tanem-scripts": "8.0.4",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"repository": {
"type": "git",
"url": "github:tanem/mtt"
},
"bugs": {
"url": "github:tanem/mtt/issues"
},
"homepage": "github:tanem/mtt"
}