-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.78 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.78 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@flopflip/react",
"version": "15.1.11",
"description": "A feature toggle wrapper to use LaunchDarkly with React",
"keywords": [
"LaunchDarkly",
"client",
"feature-flags",
"feature-toggles",
"react"
],
"homepage": "https://github.com/tdeekens/flopflip#readme",
"bugs": {
"url": "https://github.com/tdeekens/flopflip/issues"
},
"license": "MIT",
"author": "Tobias Deekens <nerd@tdeekens.name>",
"repository": {
"type": "git",
"url": "https://github.com/tdeekens/flopflip.git",
"directory": "packages/react"
},
"files": [
"readme.md",
"dist/**"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"browser": "./dist/index.js",
"typesVersions": {
"*": {
".": [
"dist/*.d.ts",
"dist/*.d.cts"
]
}
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"check-types": "tsc --noEmit",
"test": "vitest --run",
"test:watch": "vitest",
"dev": "tsdown --watch"
},
"dependencies": {
"@babel/runtime": "7.29.7",
"@flopflip/cache": "workspace:*",
"@flopflip/types": "workspace:*",
"@types/react-is": "19.2.0",
"lodash": "4.18.1",
"react-is": "19.2.7",
"tiny-warning": "1.0.3",
"ts-deepmerge": "7.0.3"
},
"devDependencies": {
"@flopflip/test-utils": "workspace:*",
"@flopflip/tsconfig": "workspace:*",
"@flopflip/tsdown-config": "workspace:*",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"tsdown": "0.22.2"
},
"peerDependencies": {
"react": "18.x || 19.x",
"react-dom": "18.x || 19.x"
}
}