-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "po-token-generator",
"version": "1.0.1",
"description": "A utility package for generating poToken using Puppeteer",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"keywords": [
"puppeteer",
"token",
"youtube scraper",
"youtube po token",
"scraping",
"automation"
],
"author": "Rajot Kumar Das",
"license": "MIT",
"dependencies": {
"node-cache": "^5.1.2",
"p-limit": "^6.1.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"tslib": "^2.7.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-puppeteer": "^10.1.0",
"jest-puppeteer": "^10.1.0",
"prettier": "^3.3.3",
"puppeteer": "^23.1.1",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
}
}