-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 loc) · 1.44 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": "youtube-sr",
"version": "4.3.11",
"description": "Simple package to make YouTube search.",
"files": [
"dist"
],
"main": "dist/mod.js",
"types": "dist/mod.d.ts",
"module": "dist/mod.mjs",
"scripts": {
"build": "bun run build:node && bun run build:deno",
"prepublishOnly": "bun run build",
"build:node": "tsup",
"build:deno": "node scripts/deno.js",
"format": "prettier --write \"**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/twlite/youtube-sr.git"
},
"keywords": [
"youtube",
"api",
"search",
"playlist",
"channel",
"video",
"scrape",
"ytsr",
"ytpl",
"yt-search",
"youtube-search",
"ytdl",
"youtube-dl",
"node",
"deno",
"scrape-youtube",
"youtube-scrape",
"youtube-api",
"simple-youtube-api",
"bun",
"bun.sh",
"bun-youtube",
"bun-youtube-api",
"buntube",
"youtube-bun"
],
"author": "twlite",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/twlite/youtube-sr/issues"
},
"homepage": "https://github.com/twlite/youtube-sr#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"chalk": "^5.3.0",
"cross-fetch": "^4.0.0",
"fs-extra": "^11.2.0",
"prettier": "^3.2.5",
"readdirp": "^3.6.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
}
}