vue-allotment
Version:
Vue 3 port of React Allotment - resizable split views with draggable dividers
88 lines • 2.32 kB
JSON
{
"name": "vue-allotment",
"type": "module",
"version": "0.2.0",
"private": false,
"description": "Vue 3 port of React Allotment - resizable split views with draggable dividers",
"author": "jannchie",
"license": "MIT",
"homepage": "https://github.com/jannchie/allotment-vue#readme",
"repository": {
"type": "git",
"url": "https://github.com/jannchie/allotment-vue.git"
},
"bugs": {
"url": "https://github.com/jannchie/allotment-vue/issues"
},
"keywords": [
"vue",
"vue3",
"allotment",
"split-view",
"resizable",
"pane",
"divider"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-allotment.js",
"require": "./dist/vue-allotment.umd.cjs"
},
"./style.css": "./dist/vue-allotment.css"
},
"main": "./dist/vue-allotment.umd.cjs",
"module": "./dist/vue-allotment.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"classnames": "^2.5.1",
"es-toolkit": "^1.39.9",
"eventemitter3": "^5.0.1",
"vue": "^3.5.18"
},
"devDependencies": {
"@jannchie/eslint-config": "^3.7.0",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-controls": "^9.0.8",
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-measure": "^9.0.8",
"@storybook/addon-onboarding": "9.1.1",
"@storybook/addon-outline": "^9.0.8",
"@storybook/addon-viewport": "^9.0.8",
"@storybook/vue3-vite": "9.1.1",
"@types/node": "^24.2.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.33.0",
"eslint-plugin-storybook": "^9.1.1",
"playwright": "^1.54.2",
"storybook": "^9.1.1",
"typescript": "~5.9.2",
"vite": "^7.1.1",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^3.0.5"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"build:lib": "vue-tsc -b && vite build --mode lib",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:preview": "pnpm storybook:build && npx http-server storybook-static"
}
}