-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.64 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
62
63
64
65
66
67
68
{
"name": "@tanstack/react-hotkeys-devtools",
"version": "0.3.0",
"description": "React devtools for TanStack Hotkeys",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/hotkeys.git",
"directory": "packages/react-hotkeys-devtools"
},
"homepage": "https://tanstack.com/hotkeys",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"react",
"tanstack",
"keys",
"devtools",
"hotkeys",
"keyboard"
],
"scripts": {
"clean": "premove ./build ./dist",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"build": "tsdown"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./production": "./dist/production.js",
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"src"
],
"peerDependencies": {
"@types/react": ">=16.8",
"@types/react-dom": ">=16.8",
"react": ">=16.8",
"react-dom": ">=16.8"
},
"dependencies": {
"@tanstack/devtools-utils": "^0.3.0",
"@tanstack/hotkeys-devtools": "workspace:*"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.13.0",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^5.1.4",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"react": "^19.2.4"
}
}