-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@launchdarkly/hello-openfeature-node-server",
"version": "0.1.0",
"description": "Hello LaunchDarkly OpenFeature Provider for the Node.js Server-Side SDK",
"private": true,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "yarn build && node ./dist/index.js",
"test": "node ./e2e/verify.mjs",
"lint": "npx eslint .",
"lint:fix": "yarn run lint --fix",
"check": "yarn lint && yarn build"
},
"keywords": [
"launchdarkly",
"openfeature",
"feature-flags"
],
"author": "LaunchDarkly",
"license": "Apache-2.0",
"dependencies": {
"@launchdarkly/node-server-sdk": "9.11.1",
"@launchdarkly/openfeature-node-server": "1.2.3",
"@openfeature/core": "^1.10.0",
"@openfeature/server-sdk": "^1.16.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@tsconfig/node20": "20.1.4",
"@types/node": "^25.9.1",
"eslint": "^9.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import-x": "^4.0.0",
"globals": "^16.0.0",
"prettier": "^3.0.0",
"typescript": "5.1.6",
"typescript-eslint": "^8.0.0"
}
}