-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "flagd-ofrep-cf-worker",
"version": "0.0.0",
"private": true,
"description": "flagd OFREP Cloudflare Worker - JS implementation for in-process flag evaluation",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "jest",
"test:smoke:worker": "npm run smoke --workspace=js-worker-example",
"lint": "npm run lint --workspaces --if-present",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"dev": "npm run dev --workspace=examples/js-worker",
"deploy": "npm run deploy --workspace=examples/js-worker",
"prepare": "husky || true"
},
"workspaces": [
"packages/*",
"examples/*"
],
"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": {
"@openfeature/ofrep-core": "^2.0.0",
"@openfeature/ofrep-provider": "^0.2.3",
"@openfeature/server-sdk": "^1.20.2",
"@types/imurmurhash": "^0.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.0",
"@types/object-hash": "^3.0.6",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.56.0"
}
}