-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 2.79 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
{
"name": "vue-simple-range-slider",
"description": "Change Your numeric value or numeric range value with dragging handles",
"version": "1.1.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/mohamadkhani/vue-simple-range-slider"
},
"keywords": [
"vue",
"range-slider",
"numeric-picker",
"range-picker",
"numeric-range-picker",
"numeric-range",
"input-element",
"range-input"
],
"peerDependencies": {
"vue": ">=3.2.0||>=2.7.0"
},
"scripts": {
"dev": "vue-demi-switch 3 vue && vite",
"dev:vue2": "vue-demi-switch 2 vue2 && vite -c ./src/vue2/vite.config.ts",
"build": "run-s build:vue3 build:vue2",
"build:vue3": "run-p build:vite build:types",
"build:vite": "vue-demi-switch 3 vue && vite build",
"build:types": "vue-tsc ./src/index.ts -d --emitDeclarationOnly --outDir ./dist",
"build:vue2": "cd src/vue2 && yarn build",
"test": "vue-demi-switch 3 vue && vitest",
"test:vue2": "vue-demi-switch 2 vue2 && vitest",
"lint": "vue-cli-service lint",
"test:2": "vue-demi-switch 2 vue2 && jest",
"test:3": "vue-demi-switch 3 && jest"
},
"devDependencies": {
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue2": "^1.1.2",
"@vitest/ui": "^0.18.1",
"@vue/compiler-sfc": "^3.2.37",
"@vue/composition-api": "^1.7.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/reactivity": "^3.2.37",
"@vue/test-utils": "^2.0.2",
"eslint": "^8.20.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.2.0",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.53.0",
"ts-jest": "^28.0.7",
"typescript": "^4.1.5",
"vite": "^3.0.2",
"vitest": "^0.18.1",
"vue": "^3.2.37",
"vue-jest": "^5.0.0-0",
"vue-tsc": "^0.39.0",
"vue2": "npm:vue@^2.7.7"
},
"dependencies": {
"vue-demi": "^0.13.5"
},
"main": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./css": "./dist/style.css",
"./vue2": {
"import": "./dist/vue2/index.common.js",
"require": "./dist/vue2/index.umd.min.js"
},
"./vue2/css": "./dist/vue2/index.css"
},
"types": "dist",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js",
"LICENSE"
]
}