forked from damonwonghv/youtube-search-api
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.04 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
{
"name": "youtube-search-api",
"version": "1.2.1",
"description": "Node.js easy to get Youtube results with playlist by provided keywords, no Login or API key required!",
"main": "index.js",
"type": "module",
"scripts": {
"start": "NODE_ENV=production node ./src/index.js",
"dev": "nodemon ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damonwonghv/youtube-search-api.git"
},
"keywords": [
"Youtube",
"search",
"api",
"youtube-search",
"youtube-api",
"youtube",
"api",
"play",
"youtube playlist",
"playlist",
"live",
"channel"
],
"author": "thisisdamon",
"license": "MIT",
"bugs": {
"url": "https://github.com/damonwonghv/youtube-search-api/issues"
},
"homepage": "https://github.com/damonwonghv/youtube-search-api#readme",
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}