-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"private": false,
"name": "@archibara/react-rewraper",
"version": "0.0.6",
"description": "Stop using nested wrappers!",
"license": "MIT",
"author": "Artur Perepelitsa <[email protected]> (github.com/archibara)",
"repository": {
"type": "git",
"url": "https://github.com/archibara/react-rewraper"
},
"bugs": {
"url": "https://github.com/archibara/react-rewraper/issues"
},
"type": "module",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc"
},
"sideEffects": false,
"types": "dist/index.d.ts",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^18.2.73",
"typescript": "^5.4.3"
},
"keywords": [
"flat",
"nested",
"pyramid of hell",
"react",
"rewraper",
"wrapper"
],
"funding": [
{
"type": "individual",
"url": "https://www.paypal.com/donate/?hosted_button_id=G6C798NNFG24E"
}
]
}