-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.54 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": "@cutting/use-shortcuts",
"description": "Effortlessly create keyboard shortcuts with this react hook.",
"version": "4.47.0",
"repository": {
"type": "git",
"url": "https://github.com/dagda1/cuttingedge.git"
},
"type": "module",
"module": "dist/esm/index.js",
"sideEffects": false,
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"start": "pnpm vite --host --port 9000 -l=info --clearScreen=false",
"test:types": "dtslint types --localTs ../../node_modules/typescript/lib --expectOnly",
"test": "NODE_ENV=test vitest",
"test:all": "CI=true pnpm test:unit && pnpm test:types",
"build": "NODE_ENV=production devtools rollup",
"lint": "eslint ./src/**/*.{ts,tsx} --fix"
},
"dependencies": {
"@cutting/util": "workspace:*",
"classnames": "^2.5.1",
"mousetrap": "^1.6.5"
},
"devDependencies": {
"@testing-library/react": "16.2.0",
"@types/mousetrap": "1.6.15",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vanilla-extract/css": "^1.17.1",
"@cutting/assert": "workspace:*",
"dtslint": "4.2.1",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"volta": {
"extends": "../../package.json"
},
"keywords": [
"hotkeys",
"focus",
"react",
"reactjs",
"reactnative",
"hooks",
"hook",
"use-shortcuts"
],
"exports": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
}