initial commit

This commit is contained in:
Ben
2025-08-16 17:11:22 +02:00
commit 1843c51e49
11 changed files with 2125 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "hyperf-keybinds",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "vitest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
}