@dolanske/v-valid 2.1.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +470 -521
- package/dist/v-valid.d.ts +94 -144
- package/dist/v-valid.js +199 -281
- package/package.json +53 -53
package/package.json
CHANGED
|
@@ -1,53 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@dolanske/v-valid",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "
|
|
5
|
-
"private": false,
|
|
6
|
-
"description": "Model based form validation made for vue 3. Inspired by vuelidate with personal take on the API and implementation",
|
|
7
|
-
"author": "dolanske",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/dolanske/v-valid.git"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"form-validation",
|
|
15
|
-
"vue3",
|
|
16
|
-
"form",
|
|
17
|
-
"validation"
|
|
18
|
-
],
|
|
19
|
-
"exports": {
|
|
20
|
-
".": {
|
|
21
|
-
"import": "./dist/v-valid.js"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
"main": "./dist/v-valid.js",
|
|
25
|
-
"module": "./dist/v-valid.js",
|
|
26
|
-
"types": "./dist/v-valid.d.ts",
|
|
27
|
-
"files": [
|
|
28
|
-
"dist"
|
|
29
|
-
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"test": "vitest watch",
|
|
32
|
-
"coverage": "vitest run --coverage",
|
|
33
|
-
"build": "vite build",
|
|
34
|
-
"lint": "eslint .",
|
|
35
|
-
"lint:fix": "eslint . --fix"
|
|
36
|
-
},
|
|
37
|
-
"peerDependencies": {
|
|
38
|
-
"vue": "latest"
|
|
39
|
-
},
|
|
40
|
-
"dependencies": {
|
|
41
|
-
"vue-demi": "^0.14.8"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@antfu/eslint-config": "^2.21.1",
|
|
45
|
-
"@vitest/coverage-c8": "^0.22.1",
|
|
46
|
-
"eslint": "^9.5.0",
|
|
47
|
-
"eslint-plugin-format": "^0.1.2",
|
|
48
|
-
"typescript": "^5.4.5",
|
|
49
|
-
"vite-plugin-dts": "^3.9.1",
|
|
50
|
-
"vitest": "^1.6.0",
|
|
51
|
-
"vue": "latest"
|
|
52
|
-
}
|
|
53
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@dolanske/v-valid",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "3.0.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Model based form validation made for vue 3. Inspired by vuelidate with personal take on the API and implementation",
|
|
7
|
+
"author": "dolanske",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/dolanske/v-valid.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"form-validation",
|
|
15
|
+
"vue3",
|
|
16
|
+
"form",
|
|
17
|
+
"validation"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"import": "./dist/v-valid.js"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"main": "./dist/v-valid.js",
|
|
25
|
+
"module": "./dist/v-valid.js",
|
|
26
|
+
"types": "./dist/v-valid.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"test": "vitest watch",
|
|
32
|
+
"coverage": "vitest run --coverage",
|
|
33
|
+
"build": "vite build",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"lint:fix": "eslint . --fix"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"vue": "latest"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"vue-demi": "^0.14.8"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@antfu/eslint-config": "^2.21.1",
|
|
45
|
+
"@vitest/coverage-c8": "^0.22.1",
|
|
46
|
+
"eslint": "^9.5.0",
|
|
47
|
+
"eslint-plugin-format": "^0.1.2",
|
|
48
|
+
"typescript": "^5.4.5",
|
|
49
|
+
"vite-plugin-dts": "^3.9.1",
|
|
50
|
+
"vitest": "^1.6.0",
|
|
51
|
+
"vue": "latest"
|
|
52
|
+
}
|
|
53
|
+
}
|