forked from Splidejs/react-splide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "@splidejs/react-splide",
"version": "0.8.2",
"description": "The React component for Splide.",
"author": "Naotoshi Fujita",
"contributes": {
"name": "Jeremy Prowse",
"url": "https://jpd.nz"
},
"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.5.14",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"babel-jest": "^29.7.0",
"chokidar": "^4.0.3",
"esbuild": "^0.25.1",
"eslint": "^9.22.0",
"fs-extra": "^11.3.0",
"gh-pages": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-jest": "^29.2.6",
"tslib": "^2.8.1",
"typescript": "^5"
},
"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": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/js/react-splide.esm.js",
"require": "./dist/js/react-splide.cjs.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"
}
}