-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.26 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
{
"name": "@vuetils/form",
"description": "Tiny form validation library for Vue",
"version": "0.2.7",
"author": "Yannic Ellhotka <https://github.com/YannicEl>",
"license": "MIT",
"homepage": "https://form.vuetils.dev/",
"repository": {
"type": "git",
"url": "https://github.com/YannicEl/vue-useForm",
"directory": "packages/lib"
},
"type": "module",
"files": [
"dist"
],
"keywords": [
"vue",
"form",
"validation"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"build": "vite build",
"build:watch": "vite build --watch",
"build:types": "vue-tsc --emitDeclarationOnly --noEmit false",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "20.14.14",
"@vitejs/plugin-vue": "5.1.2",
"@vuetils/form": "workspace:*",
"typescript": "5.5.4",
"valibot": "0.37.0",
"vite": "5.3.5",
"vitest": "2.0.5",
"vue": "3.4.35",
"vue-tsc": "3.3.1",
"zod": "3.23.8"
},
"peerDependencies": {
"vue": "3.4.35"
}
}