-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@octanejs/tanstack-hotkeys",
"version": "0.0.35",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.22.2"
},
"description": "TanStack Hotkeys bindings for Octane — reuses the framework-agnostic @tanstack/hotkeys core with an Octane hook adapter.",
"author": {
"name": "Dominic Gannaway",
"email": "dg@domgan.com"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octanejs/octane.git",
"directory": "packages/tanstack-hotkeys"
},
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"README.md",
"LICENSE.upstream"
],
"exports": {
".": "./src/index.ts"
},
"scripts": {
"test": "vitest run --project tanstack-hotkeys",
"typecheck": "tsrx-tsc --noEmit"
},
"dependencies": {
"@tanstack/hotkeys": "0.8.0"
},
"peerDependencies": {
"@octanejs/tanstack-store": "workspace:*",
"octane": "workspace:*"
},
"devDependencies": {
"@octanejs/tanstack-store": "workspace:*",
"@tanstack/react-hotkeys": "0.10.0",
"@tsrx/react": "catalog:default",
"esbuild": "catalog:default",
"octane": "workspace:*",
"react": "catalog:default",
"react-dom": "catalog:default",
"vitest": "catalog:default",
"@octanejs/testing-library": "workspace:*",
"@testing-library/react": "16.3.2",
"@vitejs/plugin-react": "catalog:default",
"happy-dom": "catalog:default",
"@tanstack/react-store": "^0.11.0",
"@types/react": "catalog:default",
"@types/react-dom": "catalog:default"
}
}