-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.77 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
{
"name": "@unleash/openfeature-node-provider",
"version": "1.0.0",
"description": "OpenFeature provider for the Unleash Node.js server-side SDK",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Unleash/unleash-openfeature-node-provider"
},
"keywords": [
"unleash",
"openfeature",
"feature-flags",
"feature-toggles",
"provider"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.10.0+sha512.0b7f8b98060031904c017e3a41eb187a16d40eeb829b95c4f8cb03681761fc4ab53dd219115b9b447f4dce1a05a214764461e7d3703392a9f32f9511ce8c86c8",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:conformance": "vitest run --config vitest.conformance.config.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@openfeature/server-sdk": "^1.14.0",
"unleash-client": "^6.0.0 || 6.12.0-beta.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@openfeature/core": "^1.11.0",
"@openfeature/server-sdk": "^1.19.0",
"@types/node": "^22.20.0",
"tsup": "^8.0.0",
"typescript": "^5.9.3",
"unleash-client": "6.12.0",
"vitest": "^4.1.10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}