├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── README.md ├── daily-anime-icon.jpg ├── gulpfile.js ├── package.json ├── src ├── api.ts ├── command │ ├── anime.ts │ └── hitokoto.ts ├── extension.ts └── util.ts ├── template ├── assets │ └── loading.png ├── css │ └── anime.css ├── index.html ├── js │ └── anime.js ├── mock │ └── data.js └── scss │ └── anime.scss ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/.vscodeignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/README.md -------------------------------------------------------------------------------- /daily-anime-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/daily-anime-icon.jpg -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/package.json -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/command/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/src/command/anime.ts -------------------------------------------------------------------------------- /src/command/hitokoto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/src/command/hitokoto.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/src/util.ts -------------------------------------------------------------------------------- /template/assets/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/assets/loading.png -------------------------------------------------------------------------------- /template/css/anime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/css/anime.css -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/index.html -------------------------------------------------------------------------------- /template/js/anime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/js/anime.js -------------------------------------------------------------------------------- /template/mock/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/mock/data.js -------------------------------------------------------------------------------- /template/scss/anime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/template/scss/anime.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deepred5/daily-anime/HEAD/tslint.json --------------------------------------------------------------------------------