-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "vue-form-handler",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"author": "Dennis R. Bosmans",
"sideEffects": false,
"description": "Vue 3 form handler, with validation, error handling, and more.",
"homepage": "https://www.vue-form-handler.com/",
"repository": {
"type": "git",
"url": "https://github.com/dbssman/vue-form-handler"
},
"bugs": {
"url": "https://github.com/dbssman/vue-form-handler/issues"
},
"private": false,
"keywords": [
"vue",
"vue handler",
"form handler",
"form",
"handler"
],
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"test": "vitest --dom",
"coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.4.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.33.0",
"@vue/runtime-core": "^3.3.4",
"@vue/test-utils": "^2.4.1",
"happy-dom": "^10.5.2",
"lodash-es": "^4.17.21",
"markdown-it": "^13.0.1",
"path": "^0.12.7",
"prettier": "3.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.3.1",
"vitepress": "^1.0.0-beta.6",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.6"
}
}