-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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": "youtubei",
"version": "1.6.7",
"description": "Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/typings/index.d.ts",
"directories": {
"test": "test"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "3.4.0",
"@types/node": "14.14.12",
"@types/node-fetch": "2.6.2",
"@typescript-eslint/eslint-plugin": "4.9.1",
"@typescript-eslint/parser": "4.9.1",
"c8": "7.11.3",
"eslint": "7.15.0",
"eslint-plugin-prettier": "3.2.0",
"jest-extended": "0.11.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"typescript": "4.1.2",
"vite": "2.9.14",
"vitest": "0.18.0"
},
"scripts": {
"dev": "tsc -w --noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types",
"build:cjs": "tsc -p ./typescript/tsconfig.cjs.json",
"build:esm": "tsc -p ./typescript/tsconfig.esm.json",
"build:types": "tsc -p ./typescript/tsconfig.types.json",
"clean": "rimraf ./dist",
"lint:check": "eslint src && prettier -c src tests",
"lint:fix": "eslint --fix && prettier --write src tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuspiciousLookingOwl/youtubei.git"
},
"keywords": [
"youtube",
"yt",
"search",
"video",
"videos",
"playlist",
"channel",
"related",
"comment",
"comments",
"live",
"chat",
"live chat"
],
"author": "Vincent Jonathan",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuspiciousLookingOwl/youtubei/issues"
},
"homepage": "https://suspiciouslookingowl.github.io/youtubei",
"dependencies": {
"node-fetch": "2.6.7",
"protobufjs": "7.2.6"
}
}