-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
{
"name": "vue-form-watchers",
"description": "A utility to dynamically create debounced watchers for reactive form fields in Vue 3.",
"version": "0.3.0",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"private": false,
"type": "commonjs",
"types": "src/index.d.ts",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"author": {
"name": "HelixForge",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HelixForge/vue-form-watchers.git"
},
"bugs": {
"url": "https://github.com/HelixForge/vue-form-watchers/issues"
},
"homepage": "https://github.com/HelixForge/vue-form-watchers#readme",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@vitest/coverage-v8": "^2.1.8",
"rollup": "^4.28.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"scripts": {
"build": "rollup -c",
"test:coverage": "vitest run --coverage"
},
"engines": {
"node": ">=14.16"
},
"keywords": [
"vue",
"vue3",
"forms",
"watchers",
"reactive",
"debounce",
"typescript"
]
}