├── .babelrc ├── .gitignore ├── README.md ├── app ├── UserStore.js ├── dist │ ├── .gitkeep │ ├── fonts │ │ ├── MaterialIcons-Regular.012cf6a.woff │ │ ├── MaterialIcons-Regular.570eb83.woff2 │ │ ├── MaterialIcons-Regular.a37b0c0.ttf │ │ └── MaterialIcons-Regular.e79bfd8.eot │ ├── imgs │ │ └── pocket-icon.34cbd22.png │ ├── styles.css │ └── viewer.html ├── electron.js ├── icons │ ├── icon.icns │ └── icon.ico ├── index.ejs ├── package.json ├── src │ ├── App.vue │ ├── SharedStore.js │ ├── assets │ │ └── pocket-icon.png │ ├── bus.js │ ├── components │ │ ├── LandingPageView.vue │ │ ├── LandingPageView │ │ │ ├── PocketItem.vue │ │ │ └── Tag.vue │ │ └── Login.vue │ ├── config │ │ ├── AppSettings.js │ │ └── pocketApiConfig.js │ ├── main.js │ └── viewer.js ├── viewer-backup.ejs └── viewer.html ├── builds └── .gitkeep ├── config.js ├── icons-backup ├── icon.icns └── icon.ico ├── package.json ├── tasks ├── release.js └── runner.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"], 3 | "plugins": ["transform-runtime"] 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | app/dist/index.html 3 | app/dist/build.js 4 | builds/* 5 | node_modules 6 | npm-debug.log 7 | npm-debug.log.* 8 | thumbs.db 9 | !.gitkeep 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |