-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@testing-library/react-render-stream",
"version": "0.0.0-semantically-released",
"repository": {
"url": "git+https://github.com/testing-library/react-render-stream-testing-library.git"
},
"author": {
"name": "Lenz Weber-Tronic",
"email": "[email protected]"
},
"type": "module",
"license": "MIT",
"exports": {
".": {
"types": {
"module-sync": "./dist/index.d.ts",
"module": "./dist/index.d.ts",
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"module-sync": "./dist/index.js",
"module": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./pure": {
"types": {
"module-sync": "./dist/pure.d.ts",
"module": "./dist/pure.d.ts",
"import": "./dist/pure.d.ts",
"require": "./dist/pure.d.cts"
},
"module-sync": "./dist/pure.js",
"module": "./dist/pure.js",
"import": "./dist/pure.js",
"require": "./dist/pure.cjs"
},
"./expect": {
"types": {
"module-sync": "./dist/expect.d.ts",
"module": "./dist/expect.d.ts",
"import": "./dist/expect.d.ts",
"require": "./dist/expect.d.cts"
},
"module-sync": "./dist/expect.js",
"module": "./dist/expect.js",
"import": "./dist/expect.js",
"require": "./dist/expect.cjs"
}
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"expect": [
"./dist/expect.d.ts"
],
"pure": [
"./dist/pure.d.ts"
]
}
},
"files": [
"dist",
"other"
],
"dependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"jsdom": "^25.0.1",
"rehackt": "^0.1.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@jest/globals": "^29.7.0",
"@testing-library/user-event": "^14.5.2",
"@tsconfig/recommended": "^1.0.7",
"@types/jsdom": "^21.1.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^9.0.1",
"expect": "^29.7.0",
"kcd-scripts": "^16.0.0",
"pkg-pr-new": "^0.0.29",
"prettier": "^3.3.3",
"publint": "^0.2.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"ts-jest-resolver": "^2.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@jest/globals": "*",
"expect": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0"
},
"scripts": {
"build": "tsup",
"pkg-pr-new-publish": "yarn build && pkg-pr-new publish --no-template",
"prepack": "yarn build",
"format": "kcd-scripts format",
"lint": "kcd-scripts lint --config .eslintrc.cjs",
"test": "kcd-scripts test --config jest.config.cjs",
"pack-and-verify": "attw --pack . && publint",
"typecheck": "kcd-scripts typecheck --build --noEmit",
"validate": "yarn pack-and-verify; CI=true yarn concurrently --group --prefix '[{name}]' --names lint,test,typecheck 'yarn lint' 'yarn test --verbose' 'yarn typecheck'"
},
"packageManager": "[email protected]",
"resolutions": {
"eslint-config-kentcdodds": "^21.0.0"
}
}