-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "flagd-ofrep-cf-worker",
"version": "0.0.0",
"private": true,
"description": "flagd OFREP Cloudflare Workers - JS and Rust implementations for in-process flag evaluation",
"engines": {
"node": ">=25.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"dev:js": "npm run dev --workspace=examples/js-worker",
"deploy:js": "npm run deploy --workspace=examples/js-worker",
"deploy:rust": "cd examples/rust-worker && npx wrangler deploy",
"deploy:rust-forking": "cd examples/rust-worker-forking && npx wrangler deploy",
"deploy:all": "npm run deploy:js && npm run deploy:rust && npm run deploy:rust-forking"
},
"workspaces": [
"packages/*",
"examples/*",
"contrib/js-sdk-contrib/libs/shared/flagd-core"
],
"keywords": [
"openfeature",
"flagd",
"ofrep",
"cloudflare",
"workers",
"feature-flags"
],
"author": "OpenFeature",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/open-feature/flagd-ofrep-cf-worker.git"
},
"devDependencies": {
"@types/imurmurhash": "^0.1.4",
"@types/node": "^25.0.10",
"@types/object-hash": "^3.0.6",
"@types/semver": "^7.7.1"
}
}