-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "react-keyed-flatten-children",
"version": "3.0.2",
"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": {
"@types/node": "^16.18.32",
"@types/react": "^18.2.7",
"@types/react-is": "^18.2.0",
"@types/react-test-renderer": "^18.0.0",
"@types/tape": "^5.6.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"tape": "^5.7.0",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.0.4"
},
"dependencies": {
"react-is": "^18.2.0"
},
"peerDependencies": {
"react": ">=15.0.0"
}
}