24 lines
546 B
JSON
24 lines
546 B
JSON
{
|
|
"name": "@tensamin/hotkeys",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"format": "pnpm exec prettier --write .",
|
|
"lint": "eslint src",
|
|
"test": "vitest run --passWithNoTests",
|
|
"build": "pnpm run test && tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-hotkeys": "^0.10.0",
|
|
"@tensamin/storage": "workspace:*",
|
|
"react": "^19.2.8",
|
|
"react-dom": "^19.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "^8.2.1"
|
|
}
|
|
}
|