-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 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
{
"name": "@evilkiwi/form",
"version": "1.1.0",
"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": "[email protected]"
},
"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": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@vitejs/plugin-vue": "^4.4.1",
"@vue/compiler-sfc": "^3.3.8",
"async-validator": "^4.2.5",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"rimraf": "^5.0.5",
"terser": "^5.24.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.3",
"vue": "^3.3.8"
}
}