-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
{
"name": "v-selectmenu",
"description": "SelectMenu for Vue3, A simple, easier and highly customized menu solution",
"version": "3.1.1",
"author": "TerryZ <[email protected]>",
"license": "MIT",
"type": "module",
"files": [
"/dist",
"/types"
],
"main": "./dist/v-selectmenu.umd.cjs",
"module": "./dist/v-selectmenu.js",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/v-selectmenu.js"
},
"require": "./dist/v-selectmenu.umd.cjs"
}
},
"typings": "types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"dts": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"dts:vue": "vue-tsc --declaration --emitDeclarationOnly"
},
"keywords": [
"front-end",
"javascript",
"web",
"vue",
"vuejs",
"menu",
"multiple-select",
"autocomplete",
"multiple-level",
"multiple-group"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TerryZ/v-selectmenu.git"
},
"peerDependencies": {
"vue": "^3.4.0"
},
"dependencies": {
"v-dropdown": "3.0.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"bootstrap": "^5.3.3",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vitest": "^2.1.8",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.10"
}
}