-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "@tanstack/hotkeys-devtools",
"version": "0.4.0",
"description": "Devtools for TanStack Hotkeys",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/hotkeys.git",
"directory": "packages/hotkeys-devtools"
},
"homepage": "https://tanstack.com/hotkeys",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"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": {
"@tanstack/hotkeys": "workspace:*"
},
"dependencies": {
"@tanstack/devtools-ui": "^0.5.0",
"@tanstack/devtools-utils": "^0.3.2",
"clsx": "^2.1.1",
"goober": "^2.1.18",
"solid-js": "^1.9.11"
},
"devDependencies": {
"vite-plugin-solid": "^2.11.10"
}
}