splitpanes-nuxt
Version:
Vue 3 Splitpanes module for Nuxt
57 lines (56 loc) • 1.55 kB
JSON
{
"name": "splitpanes-nuxt",
"version": "1.0.3",
"description": "Vue 3 Splitpanes module for Nuxt",
"repository": "xingxing-collective/splitpanes-nuxt",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"keywords": [
"splitpanes",
"split panes",
"pane",
"layout",
"nuxt-module"
],
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.14.1592",
"splitpanes": "^3.1.5"
},
"devDependencies": {
"@nuxt/devtools": "^1.6.3",
"@nuxt/eslint-config": "^0.7.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@types/node": "latest",
"changelogen": "^0.5.7",
"eslint": "^9.16.0",
"nuxt": "^3.14.1592",
"typescript": "~5.6.3",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
}
}