-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "@byronogis/vue-carousel",
"version": "0.0.4",
"packageManager": "pnpm@7.31.0",
"description": "component based on vue3.x",
"author": "byronogis",
"license": "MIT",
"homepage": "https://github.com/byronogis/vue-carousel#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/byronogis/vue-carousel.git"
},
"bugs": "https://github.com/byronogis/vue-carousel/issues",
"keywords": [
"vue3",
"component",
"carousel"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.umd.js",
"import": "./dist/index.es.js"
},
"./*": "./*"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:demo": "vite build --config demo/vite.config.ts",
"deploy:demo": "pnpm build:demo && gh-pages -d docs && rimraf docs",
"preview": "vite preview",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"fix": "eslint --fix \"**/*.{vue,ts,js}\"",
"release": "pnpm build && bumpp && npm publish --access public",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"git-hook-init": "husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"vue": "3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "0.35.3",
"@types/node": "^18.15.11",
"@vitejs/plugin-vue": "3.2.0",
"@vue/test-utils": "2.3.2",
"@vueuse/core": "^10.2.0",
"bumpp": "8.2.1",
"eslint": "8.38.0",
"gh-pages": "5.0.0",
"happy-dom": "8.9.0",
"husky": "8.0.3",
"json5": "^2.2.3",
"rimraf": "4.4.1",
"taze": "^0.9.1",
"typescript": "4.9.5",
"vite": "4.2.1",
"vite-plugin-dts": "2.2.0",
"vitest": "0.28.5",
"vue-tsc": "1.2.0"
}
}