forked from NightCatSama/vue-slider-component
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "vue-3-slider-component",
"version": "1.0.0",
"description": "A highly customized slider component for Vue 3",
"author": "shingo.sasaki <shingo.sasaki.0529@gmail.com> (https://www.shingo-sasaki.net/)",
"scripts": {
"dev": "vite",
"build": "vite build",
"prettier": "prettier --write lib/**/*.{ts,scss,vue}",
"tsc": "tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"packageManager": "pnpm@9.2.0",
"exports": {
".": {
"import": "./dist/vue-3-slider-component.mjs",
"require": "./dist/vue-3-slider-component.umd.js",
"types": "./lib/typings/index.d.ts"
}
},
"types": "./lib/typings/index.d.ts",
"files": [
"dist",
"lib",
"src",
"typings"
],
"devDependencies": {
"@storybook/addon-actions": "^8.1.6",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
"@storybook/vue3": "^8.1.6",
"@storybook/vue3-vite": "^8.1.6",
"@vitejs/plugin-vue": "^5.0.5",
"prettier": "^3.3.1",
"sass": "^1.77.4",
"storybook": "^8.1.6",
"typescript": "^5.4.5",
"vite": "^5.2.13",
"vite-plugin-css-injected-by-js": "^3.5.1"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"bugs": {
"url": "https://github.com/s-sasaki-0529/vue-slider-component/issues"
},
"homepage": "https://vue-3-slider-component.netlify.app/?path=/docs/vue-3-slider-component--vue-3-slider-component",
"keywords": [
"vue",
"slider",
"vue-slider",
"vue-component",
"vue-slider-component"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/s-sasaki-0529/vue-slider-component.git"
}
}