generated from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 KB
/
package.json
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
{
"name": "m3u8-tweaks",
"version": "1.0.0",
"author": "Merlijn van der Kamp",
"description": "CLI tool to convert Winamp playlists so they work with Music Player Daemon",
"type": "module",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/jest": "~29.2",
"@types/node": "~18",
"@types/promptly": "^3.0.2",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"prettier": "~2.8",
"rimraf": "~3.0",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~4.9"
},
"scripts": {
"start": "node build/src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"dependencies": {
"chalk": "^5.2.0",
"cli-progress": "^3.11.2",
"commander": "^10.0.0",
"promptly": "^3.2.0",
"sanitize-filename": "^1.6.3",
"tslib": "~2.4",
"xml2js": "^0.4.23"
},
"volta": {
"node": "18.12.1"
}
}