-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "react-virtual-youth",
"version": "1.0.0",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write",
"test": "rstest"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@rsbuild/plugin-react": "^1.4.2",
"@rslib/core": "^0.19.0",
"@rstest/adapter-rslib": "^0.1.0",
"@rstest/core": "^0.7.7",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"happy-dom": "^20.0.11",
"rc-animate": "^3.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"private": false,
"dependencies": {
"@rc-component/resize-observer": "^1.0.1",
"@rc-component/util": "^1.7.0",
"clsx": "^2.1.1"
}
}