-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) 路 2.03 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) 路 2.03 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
{
"name": "base-ui-vue",
"type": "module",
"version": "0.5.0",
"description": "Vue port of Base UI",
"author": "vuepont",
"license": "MIT",
"homepage": "https://baseui-vue.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/vuepont/base-ui-vue.git"
},
"keywords": [
"vue",
"nuxt",
"base-ui",
"vue-component",
"unstyled",
"a11y"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"!src/**/*.story.vue",
"!src/**/*.test.*",
"!src/**/_*.vue",
"!src/**/__snapshots__",
"!src/**/stories",
"!src/**/story",
"dist",
"src"
],
"scripts": {
"build": "pnpm type-check && pnpm build-only",
"build-only": "tsdown && tsx scripts/postbuild.ts",
"inline-scripts": "node scripts/inlineScripts.mjs",
"watch": "tsdown --watch",
"type-check": "vue-tsc -p tsconfig.check.json --noEmit",
"test": "vitest",
"test-update": "vitest -u",
"pub:release": "pnpm stage publish --no-git-checks --access public"
},
"peerDependencies": {
"vue": ">= 3.5.0"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@floating-ui/utils": "^0.2.10",
"@floating-ui/vue": "^1.1.11"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^8.1.0",
"@tsconfig/node24": "^24.0.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.2.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-istanbul": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"jsdom": "^28.0.0",
"tsdown": "^0.20.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"vitest-axe": "^0.1.0",
"vitest-canvas-mock": "^1.1.3",
"vue": "^3.5.27",
"vue-tsc": "^3.2.4"
}
}