-
Notifications
You must be signed in to change notification settings - Fork 187
/
Copy pathpackage.json
102 lines (102 loc) · 2.85 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
{
"name": "vue3-carousel",
"version": "0.13.0",
"description": "A simple carousel component for Vue 3",
"author": "Abdelrahman Ismail <dev@ismail9k.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "vite playground",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"prepublishOnly": "$npm_execpath run build",
"release": "sh scripts/new-release.sh",
"lint": "eslint .",
"lint:fix": "$npm_execpath run lint -- --fix",
"prettier": "prettier . --check",
"prettier:fix": "$npm_execpath run prettier --write",
"typecheck": "tsc -p .",
"typecheck:watch": "tsc -p . --watch --preserveWatchOutput",
"test": "vitest run --coverage",
"test:update": "vitest run --u",
"test:watch": "vitest watch",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/ismail9k/vue3-carousel.git"
},
"exports": {
".": {
"types": "./dist/carousel.d.ts",
"import": "./dist/carousel.mjs",
"require": "./dist/carousel.cjs",
"default": "./dist/carousel.mjs"
},
"./dist/carousel": {
"types": "./dist/carousel.d.ts",
"import": "./dist/carousel.mjs",
"require": "./dist/carousel.cjs",
"default": "./dist/carousel.mjs"
},
"./dist/*": "./dist/*",
"./carousel.css": "./dist/carousel.css"
},
"main": "dist/carousel.cjs",
"module": "dist/carousel.mjs",
"style": "dist/carousel.css",
"types": "dist/carousel.d.ts",
"unpkg": "dist/carousel.min.js",
"jsdelivr": "dist/carousel.min.js",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@stackblitz/sdk": "^1.11.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vite": "^6.0.5",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue": "^3.5.0"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not IE 11"
],
"keywords": [
"vue",
"vue3",
"carousel",
"slider",
"vue3-carousel",
"vue3-slider"
]
}