-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ytubes",
"version": "1.3.1",
"description": "Search for videos, shorts, playlists, channels, movies, live and musics on youtube without api key.",
"author": "Valmisson Grizorte <valmisson.github.io>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/ && tsc --build",
"lint": "eslint src/**/*.{js,ts}",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.4.0",
"eslint-plugin-promise": "^6.1.1",
"lint-staged": "^15.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix"
]
},
"repository": "git@github.com:valmisson/ytubes.git",
"bugs": "https://github.com/valmisson/ytubes/issues",
"homepage": "https://github.com/valmisson/ytubes#readme",
"keywords": [
"youtube",
"search",
"yt",
"ytube",
"video",
"shorts",
"channel",
"music",
"playlist",
"scraper",
"crawler",
"youtube search",
"youtube video",
"youtube shorts",
"youtube music",
"youtube api",
"youtube download",
"youtube without api",
"youtube scraper",
"typescript",
"javascript",
"node"
]
}