├── .gitignore ├── LICENSE ├── README.md ├── data ├── characters.json ├── episodes.json ├── locations.json ├── organizations.json └── titans.json ├── package.json ├── public └── The-Rumbling.avif ├── src ├── dataMethods.ts ├── index.ts └── types.ts ├── target └── npmlist.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/README.md -------------------------------------------------------------------------------- /data/characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/data/characters.json -------------------------------------------------------------------------------- /data/episodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/data/episodes.json -------------------------------------------------------------------------------- /data/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/data/locations.json -------------------------------------------------------------------------------- /data/organizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/data/organizations.json -------------------------------------------------------------------------------- /data/titans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/data/titans.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/package.json -------------------------------------------------------------------------------- /public/The-Rumbling.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/public/The-Rumbling.avif -------------------------------------------------------------------------------- /src/dataMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/src/dataMethods.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/src/types.ts -------------------------------------------------------------------------------- /target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/target/npmlist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZachMcM/attack-on-titan-api/HEAD/tsconfig.json --------------------------------------------------------------------------------