easyrlbot
Version:
A RLBot implementation in javascript with Sockets.
37 lines (36 loc) • 877 B
JSON
{
"name": "easyrlbot",
"version": "1.0.3",
"description": "A RLBot implementation in javascript with Sockets.",
"main": "dist/index",
"scripts": {
"watch": "npx tsc --watch",
"build": "npm run build:typedefs && npm run build:js",
"build:js": "node esbuild.js",
"build:typedefs": "tsc",
"flatc": "cd src/flat && flatc --gen-object-api --ts rlbot.fbs && echo Remember to update index.ts with all of the classes ending in 'T'"
},
"keywords": [
"rl",
"bot",
"rlbot",
"rocket",
"league",
"rocketleague",
"easy",
"typescript",
"ts"
],
"author": "Simon Lindgren",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"flatbuffers": "^2.0.7"
},
"devDependencies": {
"@types/flatbuffers": "^1.10.0",
"@types/node": "^20.4.0",
"esbuild": "^0.15.5",
"typescript": "^5.1.6"
}
}