-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "get-youtube-detail",
"version": "1.2.1",
"description": "A lib for getting youtube title,videoid,channelid,and channel/video description.",
"publishConfig": {
"access": "public"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Rajkumar-justcoder/get-youtube-detail"
},
"scripts": {
"postbuild": " tsup src/index.ts --dts-resolve",
"dev": "tsup src/index.ts --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"keywords": [
"youtube",
"video",
"get youtube data",
"channel",
"yt",
"youtube detail"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "1.0.0-rc.12"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}