-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "@xtruder/browserboi",
"version": "0.1.6",
"description": "Browser automation bot for various tasks",
"main": "./dist/index.js",
"bin": {
"browserboi": "bin/browserboi"
},
"scripts": {
"dev": "ts-node ./src/index.ts serve --youtube-cookies cookies.json",
"build": "tsc",
"login-google": "ts-node ./src/index.ts login-youtube --output cookies.json",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jaka Hudoklin <jaka@x-truder.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xtruder/browserboi.git"
},
"files": [
"bin",
"dist"
],
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.8",
"@types/which": "^2.0.1",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@godaddy/terminus": "^4.10.0",
"@tsed/ajv": "^6.98.0",
"@tsed/common": "^6.98.0",
"@tsed/core": "^6.98.0",
"@tsed/di": "^6.98.0",
"@tsed/exceptions": "^6.98.0",
"@tsed/json-mapper": "^6.98.0",
"@tsed/platform-express": "^6.98.0",
"@tsed/schema": "^6.98.0",
"@tsed/swagger": "^6.98.1",
"@tsed/terminus": "^6.98.1",
"@types/multer": "^1.4.7",
"@types/yargs": "^17.0.8",
"ajv": "^8.9.0",
"bytes": "^3.1.1",
"express": "^4.17.2",
"puppeteer": "^13.0.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"typed-cli": "^1.2.0",
"yargs": "^17.3.1"
}
}