-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.73 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.73 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@basestack/flags-react",
"version": "1.2.0",
"description": "React bindings for the Basestack Feature Flags SDK",
"repository": "https://github.com/basestack-co/basestack-flags-react",
"private": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown --config tsdown.config.ts",
"dev": "tsdown --config tsdown.config.ts --watch",
"clean": "rm -rf dist",
"lint": "bunx biome lint src README.md examples/README.md package.json tsconfig.json tsdown.config.ts vitest.config.ts",
"update:deps": "bun update -i",
"format": "bunx biome format --write src README.md examples/README.md package.json tsconfig.json tsdown.config.ts vitest.config.ts",
"check": "bunx biome check --write src README.md examples/README.md package.json tsconfig.json tsdown.config.ts vitest.config.ts",
"test": "bunx vitest run",
"test:watch": "bunx vitest watch",
"prepublishOnly": "bun run lint && bun run test && bun run build"
},
"author": "Basestack",
"license": "MIT",
"packageManager": "bun@1.3.12",
"dependencies": {
"@basestack/flags-js": "^1.2.0",
"@basestack/flags-wc": "^1.0.1"
},
"peerDependencies": {
"react": ">=19.2.5",
"react-dom": ">=18.2.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@testing-library/react": "^16.3.2",
"jsdom": "^29.0.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.4",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.17.0"
},
"browserslist": [
"defaults",
">0.35%",
"not IE 11",
"maintained node versions"
],
"keywords": [
"feature-flags",
"feature-flag",
"feature-toggle",
"feature-toggles",
"feature-management",
"feature-rollout",
"feature-gating",
"react",
"react-hooks",
"react-sdk",
"sdk",
"javascript",
"typescript",
"frontend",
"nextjs",
"next-js",
"tanstack",
"zustand",
"redux",
"feature-flags-react",
"remote-config",
"config-management",
"a-b-testing",
"experimentation",
"flags",
"feature"
]
}