tubezero 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +661 -121
- package/README.md +32 -26
- package/dist/index.cjs +1802 -675
- package/dist/index.d.cts +412 -132
- package/dist/index.d.ts +412 -132
- package/dist/index.js +1778 -673
- package/package.json +74 -54
package/package.json
CHANGED
|
@@ -1,54 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tubezero",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Zero-dependency, ultra-lightweight YouTube InnerTube client optimized for client-side environments, browser extensions, and hybrid apps.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"README.md",
|
|
19
|
-
"LICENSE"
|
|
20
|
-
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
23
|
-
"dev": "tsup src/index.ts --format esm --watch",
|
|
24
|
-
"test": "node compare-tests.mjs"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"youtube-
|
|
42
|
-
"youtube-
|
|
43
|
-
"youtube-
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"typescript"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "tubezero",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Zero-dependency, ultra-lightweight YouTube InnerTube client optimized for client-side environments, browser extensions, and hybrid apps.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
23
|
+
"dev": "tsup src/index.ts --format esm --watch",
|
|
24
|
+
"test": "node compare-tests.mjs",
|
|
25
|
+
"lint": "eslint src compare-tests.mjs benchmark.mjs test-all-calls.mjs test-compare-benchmark.mjs",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"knip": "knip",
|
|
28
|
+
"prepare": "husky"
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"src/**/*.ts": [
|
|
32
|
+
"eslint --fix"
|
|
33
|
+
],
|
|
34
|
+
"*.mjs": [
|
|
35
|
+
"eslint --fix"
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"youtube",
|
|
40
|
+
"innertube",
|
|
41
|
+
"youtube-api",
|
|
42
|
+
"youtube-scraper",
|
|
43
|
+
"youtube-parser",
|
|
44
|
+
"youtube-client",
|
|
45
|
+
"innertube-client",
|
|
46
|
+
"client-side",
|
|
47
|
+
"browser-extension",
|
|
48
|
+
"web-extension",
|
|
49
|
+
"manifest-v3",
|
|
50
|
+
"zero-dependencies",
|
|
51
|
+
"typescript",
|
|
52
|
+
"youtube-comments",
|
|
53
|
+
"youtube-subtitles",
|
|
54
|
+
"youtube-transcript",
|
|
55
|
+
"youtube-music",
|
|
56
|
+
"lightweight-scraper"
|
|
57
|
+
],
|
|
58
|
+
"author": "",
|
|
59
|
+
"license": "AGPL-3.0-only",
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@eslint/js": "^9.39.4",
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "^8.61.1",
|
|
63
|
+
"@typescript-eslint/parser": "^8.61.1",
|
|
64
|
+
"eslint": "^9.39.4",
|
|
65
|
+
"globals": "^17.6.0",
|
|
66
|
+
"husky": "^9.1.7",
|
|
67
|
+
"knip": "^6.17.1",
|
|
68
|
+
"lint-staged": "^17.0.7",
|
|
69
|
+
"tsup": "^8.0.2",
|
|
70
|
+
"tsx": "^4.7.1",
|
|
71
|
+
"typescript": "^5.3.3",
|
|
72
|
+
"youtubei": "^1.8.10"
|
|
73
|
+
}
|
|
74
|
+
}
|