-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 934 Bytes
/
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
{
"name": "react-formularium",
"version": "0.2.0",
"description": "A simple lib for handle forms in React.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && tsc",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"react",
"forms",
"form hook",
"simple form"
],
"author": "Diego Rodrigues M. Borges",
"license": "MIT",
"dependencies": {
"react": "^18.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/diegormb06/react-formularium.git"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@types/react": "^18.2.14",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.5.0",
"jsdom": "^24.0.0",
"typescript": "^5.1.3",
"vitest": "^1.5.0"
}
}