-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "vanjs-form",
"version": "1.0.2",
"description": "Fully typed form state management library (with validation) for VanJS",
"repository": "https://github.com/kwameopareasiedu/vanjs-form",
"homepage": "https://github.com/kwameopareasiedu/vanjs-form",
"keywords": [
"vanjs",
"form",
"validation"
],
"maintainers": [
"Kwame Opare Asiedu"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Kwame Opare Asiedu",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"prepublish": "yarn build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "8.57.0",
"prettier": "3.3.1",
"rollup": "^4.18.0",
"tslib": "^2.6.3"
},
"dependencies": {
"typescript": "^5.4.5",
"vanjs-core": "^1.5.0",
"yup": "^1.4.0"
},
"peerDependencies": {
"vanjs-core": "^1.2.7",
"yup": "^1.3.3"
}
}