-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.3 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.3 KB
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
{
"name": "vue3-select-component",
"type": "module",
"version": "0.16.2",
"description": "A flexible & modern select-input control for Vue 3.",
"author": "Thomas Cazade <cazade.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TotomInc/vue3-select-component.git"
},
"keywords": [
"vue3",
"select",
"dropdown"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
},
"./styles": {
"import": "./dist/styles.css",
"require": "./dist/styles.css"
},
"./dist/styles.css": "./dist/styles.css"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:playground": "vite --mode development:playground",
"test": "vitest --coverage",
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"build:playground": "vite build --mode production:playground",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "vue-tsc --build",
"bumpp": "bumpp package.json package-lock.json",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"docs:build": "vitepress build docs"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"dependencies": {
"@floating-ui/vue": "1.1.10"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.57.1"
},
"devDependencies": {
"@antfu/eslint-config": "7.2.0",
"@tailwindcss/vite": "4.1.18",
"@tsconfig/node24": "24.0.4",
"@types/jsdom": "27.0.0",
"@types/node": "24.10.11",
"@vitejs/plugin-vue": "6.0.4",
"@vitest/coverage-v8": "4.0.18",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.8.1",
"autoprefixer": "10.4.24",
"bumpp": "10.4.1",
"eslint": "9.39.2",
"jsdom": "28.0.0",
"lucide-vue-next": "0.563.0",
"npm-run-all2": "8.0.4",
"postcss": "8.5.6",
"shiki": "3.22.0",
"tailwindcss": "4.1.18",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vitepress": "1.6.4",
"vitest": "4.0.18",
"vue": "3.5.27",
"vue-component-type-helpers": "3.2.4",
"vue-router": "5.0.2",
"vue-tsc": "3.2.4"
}
}