-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
{
"name": "@atmina/formbuilder",
"version": "2.1.1",
"description": "A strongly-typed alternative API for React Hook Form.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": ["/dist"],
"scripts": {
"build": "rimraf dist && tsup src/index.ts --dts --format esm,cjs",
"prepublishOnly": "npm test && npm run build",
"lint": "yarn run lint:fix && yarn run prettier:fix",
"lint:check": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"test": "jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atmina/formbuilder.git"
},
"keywords": [
"react",
"hooks",
"forms",
"react-hook-form",
"typescript"
],
"author": "ATMINA Solutions GmbH <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atmina/formbuilder/issues"
},
"homepage": "https://github.com/atmina/formbuilder#readme",
"devDependencies": {
"@atmina/linting": "^2.1.2",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.2",
"@types/jest": "^27.5.0",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"eslint": "^8.56.0",
"expect-type": "^0.17.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.50.1",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.2"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0",
"react-hook-form": "^7.33.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"packageManager": "[email protected]+sha256.dbed5b7e10c552ba0e1a545c948d5473bc6c5a28ce22a8fd27e493e3e5eb6370",
"prettier": "@atmina/linting/prettier",
"resolutions": {
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"word-wrap": "^1.2.4"
}
}