{"id":17024327,"url":"https://github.com/littlesound/screeps-arena","last_synced_at":"2026-04-14T06:32:47.033Z","repository":{"id":109993007,"uuid":"483266112","full_name":"LittleSound/screeps-arena","owner":"LittleSound","description":"screeps-arena","archived":false,"fork":false,"pushed_at":"2022-04-23T15:19:05.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2026-01-26T08:47:01.077Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LittleSound.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-04-19T13:49:31.000Z","updated_at":"2022-04-19T13:49:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"73b48175-2748-4931-8d27-1ea06db4639a","html_url":"https://github.com/LittleSound/screeps-arena","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"screepers/screeps-arena-typescript-starter","purl":"pkg:github/LittleSound/screeps-arena","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LittleSound%2Fscreeps-arena","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LittleSound%2Fscreeps-arena/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LittleSound%2Fscreeps-arena/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LittleSound%2Fscreeps-arena/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LittleSound","download_url":"https://codeload.github.com/LittleSound/screeps-arena/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LittleSound%2Fscreeps-arena/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31785610,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T07:25:16.355Z","updated_at":"2026-04-14T06:32:47.026Z","avatar_url":"https://github.com/LittleSound.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Screeps Arena Typescript Starter\n\n## This repo is a WIP starter template for the current Closed Alpha of [Screeps Arena](https://store.steampowered.com/app/1137320/Screeps_Arena/)\n\n## Screeps Arena is a new game _under active development_, this repo is unoffcial and maintained by the screepers community\n\n### Any issues you experience with this repo should be created as an issue in this repo, _the Screeps Arena devs should NOT be contacted!_\n\n---\n\nTODO:\n\n- [ ] A way to push code to a specific arena `npm run push alpha-capture-the-flag`\n  - Will probably be a copy of files to the correct location, depending on what location has been choosen in the arena client.\n  - If we can't detect the locations, we will probably need a `screeps-arena.json` file where people can set up their desired output destinations\n\nCurrent Issues:\nNone\n\n---\n\n# Screeps Arena Typescript Starter\n\nScreeps Arena Typescript Starter is a starting point for a Screeps Arena AI written in Typescript. It provides everything you need to start writing your AI whilst leaving `main.ts` as empty as possible.\n\nThe initial example code from the steam forum is included in `src/alpha-capture_the_flag/main.ts`\n\n## Basic Usage\n\nYou will need:\n\n- [Node.JS](https://nodejs.org/en/download) (10.x || 12.x)\n- A Package Manager ([Yarn](https://yarnpkg.com/en/docs/getting-started) or [npm](https://docs.npmjs.com/getting-started/installing-node))\n- Rollup CLI (Optional, install via `npm install -g rollup`)\n\nOpen the folder in your terminal and run your package manager to install the required packages and TypeScript declaration files:\n\n```bash\n# npm\nnpm install\n\n# yarn\nyarn\n```\n\nFire up your preferred editor with typescript installed and you are good to go!\n\n- arenas are located in `src/arena_*`any folder you create in `src` with a name starting with `arena_` will result in a `main.mjs` in the `dist/arena_*` folder.\n- Run `npm run build` to generate all arenas to `/dist/*`\n\n- `npm run build` - everything is build, the player can change their arena to look at the specific `/dist/arena*` directory\n  - this template produces the following as an example `/dist/alpha_capture_the_flag/main.mjs`\n- `npm run build capture` - a specific arena is build, the player can change their arena to look at the specific `/dist/arena*` directory knowing only that arena was updated\n\n- Copy the `main.mjs` file to your desired location or change the location in the Screeps Arena client to point to the desired `/dist/*` folder.\n\n~~- `npm run push` builds all arenas, then pushes all arenas to their respective folders where the client is pointed at.~~\n~~- `npm run push capture` builds the specific arena, then pushes the capture arena to their respective folders where the client is pointed at.~~\n\n## Typings\n\nIt uses the following project for typings https://github.com/screepers/typed-screeps-arena\nWhen the typings are updated and you need to get the newest types\n\n- delete node_modules/@types/screeps-arena\n- run `npm i` to reinstall the packages. You might need to delete package-lock.json to get the types.\n\n## Contributing\n\nIssues, Pull Requests, and contribution to the docs are welcome! See our [Contributing Guidelines](CONTRIBUTING.md) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flittlesound%2Fscreeps-arena","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flittlesound%2Fscreeps-arena","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flittlesound%2Fscreeps-arena/lists"}