first commit

This commit is contained in:
Reid 2023-07-18 22:22:52 -07:00
commit 5302ecc6cc
43 changed files with 2530 additions and 0 deletions

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "goopler",
"description": "An in-dev game that I plan to make a shooter game out of.",
"keywords": ["roblox", "roblox-ts", "rojo", "matter", "roblox-matter", "ecs"],
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "reidlab"
},
"scripts": {
"build": "rbxtsc --rojo default.project.json --verbose && rojo build --output build.rbxl default.project.json",
"watch": "rbxtsc -w --rojo default.project.json --verbose",
"lint": "eslint src tests --max-warnings 0",
"serve": "rojo serve default.project.json",
"test": "yarn run build && run-in-roblox --place build.rbxl --script out/tests/runners/run.server.lua"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.0.4-types.1",
"@rbxts/types": "^1.0.689",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-plugin-roblox-ts": "^0.0.35",
"typescript": "^5.1.3"
},
"dependencies": {
"@rbxts/matter": "^0.6.2-ts.6",
"@rbxts/plasma": "^0.4.1-ts.1",
"@rbxts/rewire": "^0.3.0",
"@rbxts/services": "^1.5.1",
"@rbxts/testez": "^0.4.2-ts.0"
}
}