This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "google-photos-at-random",
"version": "1.0.0",
"description": "Load photos at random from a Google Photos album.",
"keywords": [
"google-photos"
],
"homepage": "https://github.com/peterthehan/google-photos-at-random",
"bugs": {
"url": "https://github.com/peterthehan/google-photos-at-random/issues",
"email": "peter.han.9493@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/peterthehan/google-photos-at-random"
},
"funding": [
{
"type": "GitHub",
"url": "https://github.com/sponsors/peterthehan"
},
{
"type": "Patreon",
"url": "https://www.patreon.com/peterthehan"
},
{
"type": "PayPal",
"url": "https://paypal.me/peterthehan"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/peterthehan"
},
{
"type": "Venmo",
"url": "https://venmo.com/peterthehan"
}
],
"license": "MIT",
"author": {
"name": "Peter Han",
"email": "peter.han.9493@gmail.com",
"url": "https://github.com/peterthehan"
},
"main": "./src/index.js",
"scripts": {
"format": "npx eslint --fix . && prettier --no-config --write .",
"start": "node src/index.js"
},
"dependencies": {
"express": "^4.17.1",
"googleapis": "^67.1.0",
"googlephotos": "^0.2.5",
"open": "^7.4.2",
"prompts": "^2.4.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"prettier": "^2.2.1"
}
}