-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 KB
/
package.json
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
{
"name": "openfeature-provider-javascript-server",
"version": "0.1.0",
"description": "The official Hyphen Toggle OpenFeature Provider",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"build:types": "tsc --project tsconfig.types.json",
"build": "webpack build && npm run build:types",
"lint": "eslint .",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hyphen/openfeature-provider-javascript-server.git"
},
"keywords": [
"toggle",
"openfeature",
"provider",
"hyphen"
],
"author": "@hyphen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hyphen/openfeature-provider-javascript-server/issues"
},
"homepage": "https://github.com/Hyphen/openfeature-provider-javascript-server#readme",
"dependencies": {
"@cacheable/node-cache": "^1.5.0",
"@openfeature/server-sdk": "^1.16.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@types/eslint-config-prettier": "^6.11.3",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}