This repository has been archived by the owner on Jun 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "upload-gphotos",
"description": "Upload to Google Photos",
"license": "MIT",
"author": "3846masa <[email protected]>",
"homepage": "https://github.com/3846masa/upload-gphotos#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/3846masa/upload-gphotos.git"
},
"bugs": {
"url": "https://github.com/3846masa/upload-gphotos/issues"
},
"version": "4.2.2",
"main": "lib/index.js",
"bin": {
"upload-gphotos": "lib/cli/index.js"
},
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf lib binaries",
"prepkg": "npm run build",
"pkg": "pkg -t node12-macos-x64,node12-linux-x64,node12-win-x64 --out-dir ./binaries ."
},
"types": "lib/index.d.ts",
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"configstore": "^6.0.0",
"inquirer": "^8.1.0",
"option-t": "^27.1.0",
"ora": "^5.4.0",
"p-retry": "^4.5.0",
"puppeteer-core": "^7.0.3",
"puppeteer-extra": "^3.1.18",
"puppeteer-extra-plugin-stealth": "^2.7.8",
"tough-cookie": "^4.0.0",
"which": "^2.0.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/configstore": "^5.0.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^12.20.14",
"@types/puppeteer-core": "^5.4.0",
"@types/tough-cookie": "^4.0.0",
"@types/which": "^2.0.0",
"@types/yargs": "^15.0.10",
"pkg": "^5.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"keywords": [
"google photos",
"googlephotos",
"upload"
],
"engines": {
"node": ">=10.0.0"
}
}