-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 KB
/
package.json
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
{
"name": "vue-formor",
"version": "5.0.0",
"description": "Form validation for Vue in composition functions with Valibot.",
"main": "./dist/vue-formor.cjs",
"module": "./dist/vue-formor.js",
"types": "./dist/src/vue-formor.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/vue-formor.d.ts",
"default": "./dist/vue-formor.js"
},
"require": {
"types": "./dist/src/vue-formor.d.ts",
"default": "./dist/vue-formor.cjs"
}
}
},
"scripts": {
"build": "vite build",
"unit": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/vue-formor.git"
},
"keywords": [
"vue",
"composition",
"form",
"validation",
"valibot",
"schema"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/vue-formor/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/vue-formor#readme",
"devDependencies": {
"@types/node": "^20.14.9",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/coverage-v8": "^1.6.0",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^14.12.3",
"typescript": "^5.5.2",
"valibot": "^0.35.0",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0",
"vue": "^3.4.30",
"yup": "^1.4.0",
"zod": "^3.23.8"
}
}