-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.9 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.9 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
92
93
94
95
96
97
98
99
100
101
{
"name": "@acrool/react-carousel",
"version": "5.3.8",
"description": "Most modern mobile touch slider with hardware accelerated transitions for ReactJS",
"keywords": [
"react",
"typescript",
"flexbox",
"slider",
"carousel",
"swiper"
],
"license": "MIT",
"packageManager": "yarn@4.9.1",
"repository": {
"type": "git",
"url": "https://github.com/acrool/acrool-react-carousel.git"
},
"module": "./dist/acrool-react-carousel.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/acrool-react-carousel.es.js",
"import": "./dist/acrool-react-carousel.es.js"
},
"./dist/index.css": "./dist/react-carousel.css"
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "vite build -w",
"build:claer": "rm -rf ./dist",
"prepublishOnly": "run-s build",
"build": "run-s build:claer && tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint ./src --fix",
"cz": "git-cz",
"test": "jest",
"test:coverage": "jest --coverage",
"gitlog": "git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'",
"release": "standard-version --release-as",
"release:major": "standard-version -r major",
"release:minor": "standard-version -r minor",
"release:patch": "standard-version -r patch",
"release:alpha": "standard-version --prerelease alpha"
},
"peerDependencies": {
"react": ">=18.0.0 <20.0.0",
"react-dom": ">=18.0.0 <20.0.0"
},
"dependencies": {
"clsx": "2.1.1"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^3.0.1",
"@swc/jest": "^0.2.27",
"@testing-library/dom": "10.3.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "16.0.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "^29.5.0",
"@types/node": "20.17.32",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"cz-conventional-changelog": "3.3.0",
"cz-customizable": "6.6.0",
"cz-git": "^1.11.1",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.87.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.3.2",
"ts-node": "10.8.1",
"tsconfig-paths": "^4.2.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.3.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}