-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 987 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 987 Bytes
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
{
"name": "youtube-tool",
"version": "1.0.0",
"description": "Upload videos to youtube",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run tsc && node dist/index.js",
"build": "tsc && esbuild dist/index.js --platform=node",
"tsc": "tsc --build"
},
"author": "Mal",
"license": "ISC",
"dependencies": {
"@types/node": "^18.7.23",
"@types/puppeteer": "^5.4.6",
"esbuild": "^0.20.2",
"esm": "^3.2.25",
"fs-extra": "^10.1.0",
"grunt": "^1.6.1",
"index.js": "^0.0.3",
"minimist": "^1.2.6",
"puppeteer": "^21.11.0",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/puppeteer": "^5.4.6",
"ts-node": "^10.9.1"
},
"pkg": {
"assets": "node_modules/puppeteer-extra-plugin-stealth/**/*.*"
}
}