-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.76 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.76 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
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
{
"name": "@frsource/tiny-carousel-react",
"amdName": "tinyCarouselReact",
"version": "0.3.10",
"description": "@frsource/tiny-carousel for your React app ⚛",
"source": "src/TinyCarousel.tsx",
"types": "dist/TinyCarousel.d.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"exports": "./dist/index.modern.js",
"scripts": {
"start": "react-scripts start",
"build": "microbundle --globals react=React",
"postbuild": "microbundle --tsconfig tsconfig.umd.json --globals react=React --format umd",
"reactbuild": "react-scripts build",
"test": "pnpm watch:test --watchAll=false",
"watch:test": "react-scripts test",
"lint": "eslint --ext js,ts,tsx src",
"fix:lint": "eslint --ext js,ts,tsx src --fix",
"eject": "react-scripts eject"
},
"keywords": [
"carousel",
"slider",
"swiper",
"tiny",
"react",
"integration",
"reactjs",
"react.js",
"efficient",
"modular",
"lightweight",
"mobile-friendly",
"css snap",
"scroll snap",
"snapping points",
"vanillaJS",
"accessibility",
"css",
"js"
],
"author": "Jakub Freisler <jakub.freisler@frsource.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FRSource/tiny-carousel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRSource/tiny-carousel.git"
},
"homepage": "https://www.frsource.org/tiny-carousel/ecosystem/#react",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/plugin-syntax-flow": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.22.5",
"@frsource/tiny-carousel-core": "^0.10.2",
"@frsource/tiny-carousel-utils": "^0.6.0",
"@frsource/tiny-carousel-plugin-autoplay": "^0.4.5",
"@frsource/tiny-carousel-plugin-custom-events": "^0.4.5",
"@frsource/tiny-carousel-plugin-mouse-drag": "^0.4.3",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@babel/eslint-parser": "7.22.11",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "2.1.4"
},
"peerDependencies": {
"@frsource/tiny-carousel-core": "^0.10.0",
"@frsource/tiny-carousel-utils": "^0.5.0",
"react": "^17.0.0 || ^18.0.0"
}
}