gamepad-helper
Version:
Wrapper class for the HTML5 Gamepad API.
42 lines (41 loc) • 1.18 kB
JSON
{
"name": "gamepad-helper",
"version": "1.2.3",
"description": "Wrapper class for the HTML5 Gamepad API.",
"keywords": [
"javascript",
"npm",
"typescript",
"html5",
"js",
"npm-package",
"gamepad",
"javascript-game",
"gamepad-api"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/cdleveille/gamepad-helper.git",
"author": "Chris Leveille <cdleveille@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .ts . && prettier --check .",
"format": "eslint --fix --ext .ts . && prettier --write .",
"build": "tsc",
"pack:light": "yarn build && npm pack --dry-run",
"pack:release": "yarn build && npm pack",
"release": "yarn build && npm publish"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"exports": "./lib/index.js"
}