-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
86 lines (86 loc) · 2.45 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
{
"name": "react-simply-carousel",
"version": "9.1.8",
"description": "A simple, lightweight, fully controlled isomorphic (with SSR support) React.js carousel component. Touch enabled and responsive. With support for autoplay and infinity options. Fully customizable",
"files": [
"dist/"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && yarn lint && rollup -c",
"lint": "eslint . --ext .tsx",
"prepare": "husky install",
"prepublish": "yarn build",
"check-types": "tsc --noEmit"
},
"keywords": [
"react",
"react-component",
"react-carousel",
"react-slider",
"carousel",
"slider",
"carousel-component",
"slider-component",
"responsive-carousel",
"touch-enabled-carousel",
"infinite-carousel",
"typescript-carousel",
"typescript"
],
"author": "Vadym Shymko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vadymshymko/react-simply-carousel.git"
},
"bugs": {
"url": "https://github.com/vadymshymko/react-simply-carousel/issues"
},
"homepage": "https://github.com/vadymshymko/react-simply-carousel#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=6",
"lint-staged": ">=13.1.0",
"prettier": "3.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.9.2",
"tslib": "^2.5.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"@types/react": "^16.8 || ^17 || ^18 || ^19",
"react": "^16.8 || ^17 || ^18 || ^19",
"react-dom": "^16.8 || ^17 || ^18 || ^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"lint-staged": {
"*.{js,jsx,tsx}": "eslint --cache --fix",
".": "prettier --write"
},
"resolutions": {
"semver": "^7.5.2"
}
}