-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 2.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "wheel-gestures",
"version": "0.0.0-development",
"description": "wheel gestures and momentum detection",
"main": "dist/index.js",
"module": "dist/wheel-gestures.esm.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/wheel-gestures.esm.js"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsdx watch --noClean",
"build": "tsdx build",
"test": "jest",
"lint": "eslint src docs && yarn type-check",
"lint:fix": "eslint src docs --fix",
"type-check": "tsc --noEmit",
"prepare": "tsdx build; husky install",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": "tsdx lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/xiel/wheel-gestures.git"
},
"keywords": [
"wheel",
"scroll",
"mouse",
"trackpad",
"gesture",
"events"
],
"author": "Felix Leupold <felix@xiel.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiel/wheel-gestures/issues"
},
"homepage": "https://github.com/xiel/wheel-gestures#readme",
"peerDependencies": {},
"dependencies": {
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@testing-library/react": "^12.0.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"bundlewatch": "^0.3.1",
"eslint": "^8",
"eslint-config-prettier": "^9",
"eslint-config-react-app": "^7",
"eslint-plugin-flowtype": "^8",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"semantic-release": "^19.0.5",
"ts-jest": "^29",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^5"
},
"resolutions": {
"**/jest": "^29",
"**/ts-jest": "^29",
"**/typescript": "^5",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-config-react-app": "^7",
"eslint-plugin-flowtype": "^8",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-prettier": "^5",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4"
},
"bundlewatch": {
"files": [
{
"path": "dist/*.js",
"maxSize": "10kB"
}
]
}
}