forked from nolimits4web/swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.39 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
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
102
103
104
105
106
107
108
109
{
"name": "swiper-src",
"version": "10.2.0",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"type": "module",
"scripts": {
"build": "node scripts/build",
"build:prod": "node scripts/build --prod",
"build-icons-font": "python ./scripts/icon-font/generate.py",
"watch": "node scripts/watch",
"demos": "npm run build && concurrently --kill-others \"vite ./demos/\" \"npm run watch\" ",
"core": "npm run build && concurrently --kill-others \"vite ./playground/core\" \"npm run watch\" ",
"element": "npm run build && concurrently --kill-others \"vite ./playground/element\" \"npm run watch\" ",
"react": "npm run build && concurrently --kill-others \"vite ./playground/react\" \"npm run watch\"",
"vue": "npm run build && concurrently --kill-others \"vite ./playground/vue\" \"npm run watch\"",
"prettier": "prettier \"**/*.+(js|json|scss|css|less|ts|jsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "eslint --ext .js,.jsx .",
"validate": "npm-run-all --parallel check-format lint",
"release": "npm run validate && node ./scripts/release",
"test": "npm run validate && npm run build:prod",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s",
"build-sponsors": "node scripts/build-sponsors.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nolimits4web/Swiper.git"
},
"keywords": [
"swiper",
"swipe",
"slider",
"touch",
"ios",
"mobile",
"cordova",
"phonegap",
"app",
"framework",
"framework7",
"carousel",
"gallery",
"plugin",
"vue",
"slideshow"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nolimits4web/swiper/issues"
},
"homepage": "https://swiperjs.com",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/vladimirkharlampidi"
},
{
"type": "open_collective",
"url": "http://opencollective.com/swiper"
}
],
"engines": {
"node": ">= 4.7.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/react": "^18.2.14",
"@vitejs/plugin-vue": "^4.2.3",
"all-contributors-cli": "^6.26.0",
"autoprefixer": "^10.4.14",
"chalk": "^5.3.0",
"clean-css": "^5.3.2",
"concurrently": "^8.2.0",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"elapsed-time-logger": "^1.1.7",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"exec-sh": "^0.4.0",
"fs-extra": "^11.1.1",
"globby": "^13.2.1",
"inquirer": "^9.2.7",
"less": "^4.1.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.0",
"ssr-window": "^4.0.2",
"terser": "^5.18.2",
"vite": "^4.3.9",
"vue": "^3.3.4"
}
}