forked from Splidejs/react-splide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "@splidejs/react-splide",
"version": "0.7.12",
"description": "The React component for Splide.",
"author": "Naotoshi Fujita",
"license": "MIT",
"main": "dist/js/react-splide.cjs.js",
"module": "dist/js/react-splide.esm.js",
"types": "dist/types/index.d.ts",
"keywords": [
"splide",
"slider",
"carousel",
"slideshow",
"lightweight",
"touch",
"responsive",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/Splidejs/react-splide.git"
},
"bugs": {
"url": "https://github.com/Splidejs/react-splide/issues"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"babel-jest": "^29.0.2",
"chokidar": "^3.5.3",
"esbuild": "^0.15.7",
"eslint": "^8.23.0",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"jest": "^29.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "next",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"scripts": {
"develop": "node ./scripts/develop.js",
"build:module": "node ./scripts/build-module.js",
"build:types": "node scripts/clean.js && tsc --emitDeclarationOnly",
"build:all": "npm run build:module && npm run build:types && npm run copy",
"check:type": "tsc --noEmit",
"copy": "node scripts/copy-css.js",
"test": "jest",
"eslint": "eslint src",
"deploy": "gh-pages -d examples/dist"
},
"exports": {
".": {
"require": "./dist/js/react-splide.cjs.js",
"import": "./dist/js/react-splide.esm.js",
"default": "./dist/js/react-splide.esm.js"
},
"./css": "./dist/css/splide.min.css",
"./css/core": "./dist/css/splide-core.min.css",
"./css/*": "./dist/css/themes/splide-*.min.css"
},
"dependencies": {
"@splidejs/splide": "^4.1.3"
}
}