UNPKG

orion-engine

Version:

A simple and lightweight web based game development library

50 lines (49 loc) 1.29 kB
{ "name": "orion-engine", "version": "1.7.3", "description": "A simple and lightweight web based game development library", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "files": [ "lib/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/NateTheDev1/orion.git" }, "keywords": [ "game engine", "games", "react-games", "game development helpers", "orion" ], "author": "Nathaniel Richards", "license": "ISC", "bugs": { "url": "https://github.com/NateTheDev1/orion/issues" }, "homepage": "https://github.com/NateTheDev1/orion#readme", "devDependencies": { "prettier": "^2.8.4", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.9.5" }, "dependencies": { "@types/react": "^18.0.28", "@types/react-dom": "^18.0.11", "react": "^18.2.0" } }