-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "vue-histogram-dual-range",
"description": "Vue3 histogram dual range package",
"author": "Tkachenko Kirill <[email protected]>",
"version": "0.0.15",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-histogram-dual-range-lib.umd.cjs",
"module": "./dist/vue-histogram-dual-range-lib.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CodeXiD/vue-histogram-dual-range.git"
},
"keywords": [
"vue",
"vuejs",
"vue3",
"slider",
"range",
"dual-range",
"dual-slider",
"range-slider",
"histogram",
"histogram-slider"
],
"exports": {
".": {
"import": "./dist/vue-histogram-dual-range-lib.js",
"require": "./dist/vue-histogram-dual-range-lib.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly -p tsconfig.json",
"types": "vue-tsc ",
"preview": "vite preview"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"floating-vue": "^5.2.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"vue": "^3.4.29",
"vue-double-range-input": "^0.1.6"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.16.0",
"@vitejs/plugin-vue": "^5.0.5",
"eslint-plugin-vue": "^9.27.0",
"sass": "^1.77.7",
"typescript": "^5.5.3",
"vite": "^5.3.1",
"vue-tsc": "^2.0.21"
}
}