@volverjs/form-vue
Version:
Vue 3 Forms with @volverjs/ui-vue
95 lines • 2.43 kB
JSON
{
"name": "@volverjs/form-vue",
"description": "Vue 3 Forms with @volverjs/ui-vue",
"author": "24/Consulting",
"license": "MIT",
"keywords": [
"form",
"form-field",
"form-wrapper",
"vue3",
"zod",
"validation"
],
"homepage": "https://github.com/volverjs/form-vue",
"repository": {
"type": "git",
"url": "https://github.com/volverjs/form-vue"
},
"bugs": {
"url": "https://github.com/volverjs/form-vue/issues"
},
"version": "0.0.14",
"engines": {
"node": ">= 16.x"
},
"packageManager": "pnpm@8.7.5",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"node",
"*.d.ts"
],
"dependencies": {
"@volverjs/ui-vue": "0.0.10-beta.3",
"@vueuse/core": "^10.4.1",
"ts-dot-prop": "^2.1.3",
"vue": "^3.3.4",
"zod": "^3.22.2"
},
"devDependencies": {
"@playwright/experimental-ct-vue": "1.38.0",
"@testing-library/vue": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@vitejs/plugin-vue": "^4.3.4",
"@volverjs/style": "^0.1.11",
"@vue/compiler-sfc": "^3.3.4",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/runtime-core": "^3.3.4",
"@vue/test-utils": "^2.4.1",
"copy": "^0.3.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"happy-dom": "^11.0.6",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-externalize-deps": "^0.7.0",
"vitest": "^0.34.4"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"default": "./dist/index.umd.cjs"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"dev": "vite build --watch",
"build": "vite build",
"test": "pnpm run build && pnpm run test-vitest && pnpm run test-playwright",
"test-vitest": "vitest run",
"test-vitest-watch": "vitest",
"test-playwright": "playwright test -c playwright-ct.config.ts",
"credits": "npx @opengovsg/credits-generator"
}
}