ts-game-engine
Version:
Simple WebGL game/render engine written in TypeScript
40 lines (39 loc) • 984 B
JSON
{
"name": "ts-game-engine",
"version": "0.0.9",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"webgl",
"typescript",
"game",
"gamedev",
"engine",
"gameengine"
],
"author": "MaikelChan",
"license": "MIT",
"description": "Simple WebGL game/render engine written in TypeScript",
"url": "https://github.com/MaikelChan/ts-game-engine",
"repository": {
"type": "git",
"url": "https://github.com/MaikelChan/ts-game-engine.git"
},
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rimraf lib",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"prepare": "npm run build"
},
"dependencies": {
"gl-matrix": "^3.1.0"
},
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"rimraf": "^3.0.1",
"typescript": "^3.7.5"
}
}