-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "youtubeer",
"version": "1.0.0",
"description": "An API to download Karaoke videos from Youtube",
"main": "tmp/dist.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "npx esbuild src/index.ts --bundle --minify --platform=node --outfile=tmp/dist.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/helv-io/youtubeer.git"
},
"private": "true",
"author": "Helvio Pedreschi",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/helv-io/youtubeer/issues"
},
"homepage": "https://github.com/helv-io/youtubeer#readme",
"dependencies": {
"@simplyhexagonal/exec": "^2.0.2",
"express": "^4.18.2",
"sanitize-filename": "^1.6.3",
"stream-to-promise": "^3.0.0",
"ytdl-core": "^4.11.2",
"ytsr": "^3.8.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.5",
"@types/stream-to-promise": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"prettier": "^2.8.6",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}