-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "@react-native/virtualized-lists",
"version": "0.87.0-main",
"description": "Virtualized lists for React Native.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-native.git",
"directory": "packages/virtualized-lists"
},
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/virtualized-lists#readme",
"keywords": [
"lists",
"virtualized-lists",
"section-lists",
"react-native"
],
"bugs": "https://github.com/facebook/react-native/issues",
"engines": {
"node": "^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0"
},
"exports": {
".": {
"react-native-strict-api": "./types_generated/index.d.ts",
"types": "./index.d.ts",
"default": "./index.js"
},
"./*": {
"types": null,
"default": "./*.js"
},
"./package.json": "./package.json"
},
"files": [
"index.js",
"index.d.ts",
"Lists",
"README.md",
"types_generated",
"Utilities",
"!**/__docs__/**",
"!**/__fixtures__/**",
"!**/__mocks__/**",
"!**/__tests__/**"
],
"dependencies": {
"invariant": "^2.2.4",
"nullthrows": "^1.1.1"
},
"devDependencies": {
"react-test-renderer": "19.2.3"
},
"peerDependencies": {
"@types/react": "^19.2.0",
"react": "*",
"react-native": "1000.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
}