keyhawk
Version:
Create keybinds easily with single and multi key support
55 lines (54 loc) • 1.53 kB
JSON
{
"name": "keyhawk",
"version": "1.3.1",
"description": "Create keybinds easily with single and multi key support",
"module": "keyhawk.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "rollup -c",
"bundle:watch": "rollup -c --watch",
"test": "node test/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robertcorponoi/keyhawk.git"
},
"keywords": [
"keybind",
"key",
"keys",
"game",
"keyboard",
"event",
"canvas"
],
"typings": "lib/index.d.ts",
"author": "Robert Corponoi",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^9.0.2",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"deltaframe": "^2.0.3"
}
}