google-photo-album-sync/package.json

26 lines
541 B
JSON
Raw Normal View History

2022-05-05 23:34:05 +02:00
{
"name": "google-photo-album-sync",
"version": "1.0.0",
"description": "Syncs a google photo album with a harddrive",
2022-05-07 16:11:22 +02:00
"main": "src/sync.js",
2022-05-05 23:34:05 +02:00
"type": "module",
"scripts": {
2022-05-07 16:11:22 +02:00
"token": "node src/getToken.js",
2022-05-05 23:34:05 +02:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"photos",
"sync",
"google",
"cloud"
],
"author": "Daniel Kluge",
"license": "GPL-3.0",
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"node-fetch": "^3.2.4",
"open": "^8.4.0"
}
}