-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "react-keyed-flatten-children",
"version": "4.0.0",
"description": "Flattens React children and fragments to an array with predictable and stable keys",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/grrowl/react-keyed-flatten-children",
"repository": {
"type": "git",
"url": "https://github.com/grrowl/react-keyed-flatten-children.git"
},
"scripts": {
"build": "tsup index.ts --format esm,cjs --clean --dts --cjsInterop --splitting",
"test": "tsx index.spec.tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"fragment",
"flatten",
"children",
"utility"
],
"author": "Tom McKenzie <tom@chillidonut.com>",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^16.18.32",
"@types/react": "^19.0.7",
"@types/react-is": "^19.0.0",
"@types/tape": "^5.8.1",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.8.8",
"react": "^19.0.0",
"tape": "^5.9.0",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.0.4"
},
"dependencies": {
"react-is": "^19.0.0"
},
"peerDependencies": {
"react": ">=19.0.0"
}
}