-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.77 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
{
"name": "@directus/vue-split-panel",
"version": "0.8.13",
"description": "Split panel component for Vue based on WebAwesome Split Panel",
"keywords": [
"components",
"panel",
"splitter",
"ui",
"vue"
],
"homepage": "https://github.com/directus/vue-split-panel",
"bugs": {
"url": "https://github.com/directus/vue-split-panel/issues"
},
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/directus/vue-split-panel.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
},
"./package.json": "./package.json",
"./index.css": "./dist/style.css"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"playground": "vp dev",
"docs:dev": "nuxt dev docs",
"docs:build": "nuxt build docs",
"test": "vp test --run",
"test:coverage": "vp test --run --coverage",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build",
"lint": "vp lint --type-aware --type-check",
"lint:fix": "vp lint --fix"
},
"dependencies": {
"@vueuse/core": "14.3.0"
},
"devDependencies": {
"@nuxt/kit": "4.3.0",
"@nuxt/ui-pro": "3.3.7",
"@nuxtjs/mdc": "0.20.0",
"@tsdown/css": "0.22.0",
"@types/node": "25.9.1",
"@vitejs/plugin-vue": "6.0.7",
"@vitest/coverage-v8": "4.1.7",
"@vue/test-utils": "2.4.10",
"better-sqlite3": "12.6.2",
"bumpp": "11.1.0",
"docus": "5.4.4",
"happy-dom": "20.9.0",
"nuxt": "4.3.0",
"tailwindcss": "4.1.18",
"typescript": "6.0.3",
"unist-util-visit": "5.1.0",
"vite-plus": "0.1.23",
"vue": "3.5.35",
"vue-tsc": "3.2.9"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"packageManager": "pnpm@11.5.0"
}