forked from evilkiwi/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "@evilkiwi/form",
"version": "1.0.9",
"description": "Vue 3 Utility Hook for Form handling and validation",
"files": [
"build"
],
"sideEffects": false,
"main": "./build/index.js",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"license": "GPL-3.0-only",
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "support@evil.kiwi"
},
"homepage": "https://github.com/evilkiwi/form",
"bugs": {
"url": "https://github.com/evilkiwi/form/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/form.git"
},
"keywords": [
"typescript",
"vue",
"form",
"validation",
"hook"
],
"scripts": {
"clean": "rimraf build",
"prepack": "pnpm run build",
"build": "pnpm run clean && pnpm run compile",
"compile": "vite build",
"dev": "vite build --watch"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"@vue/compiler-sfc": "^3.2.45",
"async-validator": "^4.2.5",
"rimraf": "^3.0.2",
"terser": "^5.15.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-dts": "^1.7.1",
"vue": "^3.2.45"
}
}