-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.79 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.79 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@volverjs/form-vue",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@11.1.1",
"description": "Vue 3 Forms with @volverjs/ui-vue",
"author": "8 Wave S.r.l.",
"license": "MIT",
"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"
},
"keywords": [
"form",
"form-field",
"form-wrapper",
"vue3",
"zod",
"validation"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"default": "./dist/index.umd.js"
},
"./src/*": "./src/*",
"./dist/*": "./dist/*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
]
}
},
"files": [
"*.d.ts",
"dist",
"node",
"src"
],
"engines": {
"node": ">= 16.x"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"dev": "vite build --watch",
"build": "vite build",
"test": "pnpm run build && vitest run",
"test:unit": "vitest run --project unit",
"test:browser": "vitest run --project browser",
"test:watch": "vitest",
"credits": "npx @opengovsg/credits-generator"
},
"peerDependencies": {
"@volverjs/ui-vue": "^0.0.12",
"@vueuse/core": "^14.0.0",
"dot-prop": "^10.0.0",
"vue": "^3.5.0",
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@nabla/vite-plugin-eslint": "^3.0.1",
"@testing-library/vue": "^8.1.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/browser-playwright": "^4.1.6",
"@volverjs/style": "^0.1.23",
"@volverjs/ui-vue": "^0.0.12",
"@vue/compiler-dom": "^3.5.34",
"@vue/compiler-sfc": "^3.5.34",
"@vue/language-core": "^3.2.8",
"@vue/runtime-core": "^3.5.34",
"@vue/shared": "^3.5.34",
"@vue/test-utils": "^2.4.10",
"@vueuse/core": "^14.3.0",
"copy": "^0.3.2",
"dot-prop": "^10.1.0",
"eslint": "^10.3.0",
"happy-dom": "^20.9.0",
"playwright": "^1.59.1",
"typescript": "^6.0.3",
"vite": "^8.0.12",
"vite-plugin-dts": "^5.0.0",
"vite-plugin-externalize-deps": "^0.10.0",
"vitest": "^4.1.6",
"vitest-browser-vue": "^2.1.0",
"vue": "^3.5.34",
"zod": "^4.4.3"
}
}