-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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": "@flopflip/react-redux",
"version": "14.0.2",
"description": "A feature toggle wrapper to use LaunchDarkly with React Redux",
"main": "dist/flopflip-react-redux.cjs.js",
"module": "dist/flopflip-react-redux.esm.js",
"browser": {
"./dist/flopflip-react-redux.cjs.js": "./dist/flopflip-react-redux.browser.cjs.js",
"./dist/flopflip-react-redux.esm.js": "./dist/flopflip-react-redux.browser.esm.js"
},
"files": [
"readme.md",
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/tdeekens/flopflip.git",
"directory": "packages/react-redux"
},
"author": "Tobias Deekens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tdeekens/flopflip/issues"
},
"homepage": "https://github.com/tdeekens/flopflip#readme",
"devDependencies": {
"@flopflip/combine-adapters": "workspace:*",
"@flopflip/localstorage-adapter": "workspace:*",
"@flopflip/memory-adapter": "workspace:*",
"@flopflip/test-utils": "workspace:*",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "8.0.5",
"redux": "4.2.1"
},
"dependencies": {
"@babel/runtime": "7.26.7",
"@flopflip/react": "workspace:*",
"@flopflip/types": "workspace:*",
"@types/react": "18.3.18",
"@types/react-redux": "7.1.34"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0.0",
"react-dom": "^16.8 || ^17.0 || ^18.0.0",
"react-redux": "^7.0.0 || ^8.0.0",
"redux": "^4.0"
},
"keywords": [
"feature-flags",
"feature-toggles",
"LaunchDarkly",
"client"
]
}