UNPKG

@utsp/input

Version:

Comprehensive input management system for UTSP - keyboard, mouse, gamepad, and touch support with unified routing

69 lines 1.61 kB
{ "name": "@utsp/input", "version": "0.4.0", "description": "Comprehensive input management system for UTSP - keyboard, mouse, gamepad, and touch support with unified routing", "author": "THP Software", "license": "MIT", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "keywords": [ "typescript", "input", "keyboard", "mouse", "gamepad", "touch", "mobile", "controller", "utsp", "event-handling", "input-system", "browser", "web" ], "repository": { "type": "git", "url": "https://github.com/thp-software/utsp.git", "directory": "packages/input" }, "bugs": { "url": "https://github.com/thp-software/utsp/issues" }, "homepage": "https://github.com/thp-software/utsp/tree/master/packages/input#readme", "engines": { "node": ">=18.0.0" }, "sideEffects": false, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "dependencies": { "@utsp/types": "0.4.0" }, "devDependencies": { "typescript": "^5.6.3" }, "scripts": { "build": "node ../../scripts/build-package.mjs packages/input", "dev": "tsc --watch", "clean": "rimraf dist", "lint": "eslint \"src/**/*.ts\" --max-warnings 0", "lint:fix": "eslint \"src/**/*.ts\" --fix", "typecheck": "tsc --noEmit", "test": "echo \"No tests configured yet\"" } }