-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 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
{
"name": "@daformat/react-headless-carousel",
"version": "1.0.8",
"license": "MIT",
"description": "A react headless carousel component, with no dependencies, supporting drag to scroll, inertia, rubber-banding, snapping and more",
"keywords": [
"carousel",
"react",
"headless",
"carousel-component",
"react-component"
],
"homepage": "https://github.com/daformat/react-headless-carousel",
"bugs": {
"url": "https://github.com/daformat/react-headless-carousel/issues"
},
"author": "Mathieu Jouhet",
"repository": {
"type": "git",
"url": "git+https://github.com/daformat/react-headless-carousel.git"
},
"scripts": {
"build": "tsc",
"ci": "pnpm build && pnpm format:check && pnpm test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci",
"test": "vitest run"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.4.0+sha512.6b849d0787d97f8f4e1f03a9b8ff8f038e79e153d6f11ae539ae7c435ff9e796df6a862c991502695c7f9e8fac8aeafc1ac5a8dab47e36148d183832d886dd52",
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^7.16.2",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}