forked from twlite/youtube-sr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "youtube-sr",
"version": "4.1.9",
"description": "Simple package to make YouTube search.",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
"require": "./dist/main.js",
"import": "./dist/main.mjs"
},
"scripts": {
"build": "rimraf dist && tsc && gen-esm-wrapper ./dist/main.js ./dist/main.mjs",
"test": "tsc && cd dev && node index.js",
"format": "prettier --write **/*.{js,ts}",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevSnowflake/youtube-sr.git"
},
"keywords": [
"youtube",
"api",
"search",
"playlist",
"channel",
"video",
"scrape",
"ytsr",
"ytpl",
"yt-search",
"youtube-search",
"ytdl",
"youtube-dl",
"scrape-youtube",
"youtube-scrape",
"youtube-api",
"simple-youtube-api"
],
"author": "Snowflake107",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DevSnowflake/youtube-sr/issues"
},
"homepage": "https://github.com/DevSnowflake/youtube-sr#readme",
"dependencies": {
"node-fetch": "^2.6.5"
},
"devDependencies": {
"@types/node": "^15.12.0",
"fs-extra": "^10.0.0",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^2.3.0",
"readdirp": "^3.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}