-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.47 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.47 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@formkit-gov/test-utils",
"version": "0.0.0",
"description": "Testing utilities for forms built with FormKit Gov including render helpers, interaction utilities, and accessibility testing",
"keywords": [
"testing",
"forms",
"react-testing-library",
"vitest",
"accessibility",
"a11y"
],
"homepage": "https://docs.formkit-gov.org/docs/packages/test-utils",
"bugs": {
"url": "https://github.com/LinnJS/formkit-gov/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinnJS/formkit-gov.git",
"directory": "packages/test-utils"
},
"license": "MIT",
"author": "LinnJS",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist .turbo",
"dev": "tsup --watch",
"dev:open": "tsup --watch",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@formkit-gov/core": "workspace:*",
"@formkit-gov/react": "workspace:*",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"axe-core": "^4.11.1"
},
"devDependencies": {
"@formkit-gov/eslint-config": "workspace:*",
"@formkit-gov/typescript-config": "workspace:*",
"@hookform/resolvers": "^5.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"happy-dom": "^20.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"peerDependencies": {
"@testing-library/jest-dom": ">=6.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0",
"vitest": ">=1.0.0"
},
"peerDependenciesMeta": {
"@testing-library/jest-dom": {
"optional": true
},
"vitest": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}