-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@bigbinary/neeto-hotkeys",
"version": "1.0.9",
"description": "React hook for handling keyboard shortcuts, offering a customizable and platform-aware solution, supporting global and scoped modes.",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"prepare": "husky install",
"build": "NODE_ENV=production rollup -c"
},
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"main": "dist/index.cjs.js",
"module": "dist/index.mjs",
"engines": {
"node": ">=18.12",
"npm": ">=9",
"yarn": ">=1.22"
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigbinary/neeto-hotkeys.git"
},
"author": "BigBinary",
"license": "ISC",
"bugs": {
"url": "https://github.com/bigbinary/neeto-hotkeys/issues"
},
"homepage": "https://github.com/bigbinary/neeto-hotkeys#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.22.6",
"@babel/eslint-parser": "7.22.6",
"@babel/plugin-transform-runtime": "7.22.6",
"@babel/preset-env": "7.22.6",
"@babel/preset-react": "7.22.5",
"@bigbinary/babel-preset-neeto": "1.0.3",
"@bigbinary/eslint-plugin-neeto": "^1.1.14",
"@bigbinary/neeto-cist": "^1.0.4",
"@bigbinary/neeto-commons-frontend": "3.0.1",
"@rollup/plugin-alias": "5.0.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"babel-plugin-preval": "^5.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^8.53.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-cypress": "2.13.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jam3": "0.2.3",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.7.1",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unused-imports": "2.0.0",
"eslint-plugin-xss": "0.1.12",
"glob": "^10.3.10",
"husky": "^8.0.0",
"lint-staged": "13.2.3",
"mousetrap": "^1.6.5",
"mousetrap-global-bind": "^1.1.0",
"platform": "^1.3.6",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.3.0",
"react": "^18.2.0",
"rollup": "2.79.2",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-cleaner": "1.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"yalc": "^1.0.0-pre.53"
},
"peerDependencies": {
"@bigbinary/neeto-cist": "latest",
"@bigbinary/neeto-commons-frontend": "latest",
"ramda": "^0.29.1",
"react": "^18.2.0"
}
}