-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "vue-yup-form",
"version": "1.0.8",
"description": "Headless form validation with Vue and Yup",
"keywords": [
"vue",
"yup",
"form",
"validate",
"validation",
"vue-yup-form"
],
"author": "mascii<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mascii/vue-yup-form/issues"
},
"homepage": "https://vue-yup-form.pages.dev/",
"files": [
"dist/index.*",
"dist/yup.d.ts"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/mascii/vue-yup-form.git"
},
"scripts": {
"build": "tsup src/index.ts src/yup.ts --external './yup' --format cjs,esm --dts --target es2017 --clean",
"format": "prettier ./{src,__tests__}/ --write",
"test": "nr test:vue3 && nr test:vue2 && vue-demi-switch 3",
"test:vue2": "vue-demi-switch 2.7 vue2 && vitest run --config ./config/vitest.ts --coverage",
"test:vue3": "vue-demi-switch 3 vue && vitest run --config ./config/vitest.ts --coverage",
"typecheck": "nr typecheck:vue3 && nr typecheck:vue2 && vue-demi-switch 3",
"typecheck:vue2": "vue-demi-switch 2.7 vue2 && vitest typecheck --run --config ./config/vitest.ts",
"typecheck:vue3": "vue-demi-switch 3 vue && vitest typecheck --run --config ./config/vitest.ts",
"watch": "nr build --watch ./src/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"dependencies": {
"vue-demi": "^0.14.6"
},
"peerDependencies": {
"vue": "^2.0.0 || >=3.0.0",
"yup": "^1.0.0 || ^0.32.11"
},
"devDependencies": {
"@antfu/ni": "^0.19.0",
"@vitest/coverage-c8": "^0.28.4",
"@vueuse/core": "^9.13.0",
"c8": "^7.12.0",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-rc.4",
"vitest": "^0.28.4",
"vue": "^3.2.47",
"vue2": "npm:vue@^2.7.14",
"yup": "^1.0.0"
}
}