-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "flare-flags",
"version": "1.0.10",
"description": "A lightweight feature flag library for TypeScript with user targeting, cohorts, and React integration. Designed for Cloudflare Workers.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"feature-flags",
"feature-toggles",
"flags",
"cohorts",
"user-targeting",
"cloudflare-workers"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dan/flare-flags.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "bun test && bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"react": "^19.2.0",
"typescript": "^5"
}
}