-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.66 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
{
"name": "@launchdarkly/openfeature-js-server-common",
"version": "0.1.3",
"description": "LaunchDarkly OpenFeature common provider for server-side JavaScript SDKs",
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/shared/openfeature-server-common",
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/js-core.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup-node",
"lint": "npx eslint .",
"lint:fix": "yarn run lint --fix",
"test": "jest",
"check": "yarn lint && yarn build && yarn test"
},
"files": [
"dist"
],
"keywords": [
"launchdarkly",
"openfeature",
"feature-flags"
],
"author": "LaunchDarkly",
"license": "Apache-2.0",
"dependencies": {
"@launchdarkly/js-sdk-common": "2.25.1"
},
"peerDependencies": {
"@openfeature/server-sdk": "^1.16.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@openfeature/core": "^1.10.0",
"@openfeature/server-sdk": "^1.16.0",
"@types/jest": "^29.5.3",
"eslint": "^9.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-jest": "^28.0.0",
"globals": "^16.0.0",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"tsup": "^8.5.1",
"typescript": "5.1.6",
"typescript-eslint": "^8.0.0"
}
}