-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 KB
/
package.json
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
69
{
"name": "react-use-tinykeys",
"version": "0.0.7",
"description": "tinykeys, but as a hook",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"types": "lib/index.d.ts",
"author": "Marius Florescu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mariusflorescu/react-use-tinykeys.git"
},
"homepage": "https://github.com/mariusflorescu/react-use-tinykeys#readme",
"bugs": {
"url": "https://github.com/mariusflorescu/react-use-tinykeys/issues"
},
"private": false,
"keywords": [
"react-use-tinykeys",
"useTinykeys",
"tinkeys",
"shortcuts",
"event",
"hook",
"key",
"keyboard",
"keydown",
"keypress",
"react",
"next.js",
"window"
],
"dependencies": {
"@babel/eslint-parser": "^7.16.5"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"babel-plugin-dev-expression": "^0.2.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"scripts": {
"build": "rimraf lib && rollup -c && tsc --emitDeclarationOnly",
"format": "prettier --write .",
"lint": "eslint .",
"prepublish:public": "yarn run build && npm version patch",
"publish:public": "npm publish --access public"
}
}