-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@tapico/node-openfeature-posthog",
"version": "1.1.4",
"description": "OpenFeature provider for the PostHog feature flags solution",
"private": false,
"author": "Tapico <[email protected]>",
"keywords": [
"openfeature",
"opentelemetry",
"feature",
"feature flag"
],
"repository": {
"type": "git",
"url": "https://github.com/Tapico/node-posthog-openfeature.git"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"format": "prettier src/**/*.ts --write",
"lint": "TIMING=1 eslint src/**/*.ts* --fix",
"test": "jest",
"version": "pnpm run version:update",
"version:update": "node ./scripts/version-update.js",
"prepublishOnly": "pnpm run test && pnpm run version:update && pnpm run build"
},
"dependencies": {
"@openfeature/core": "^1.1.0",
"@openfeature/server-sdk": "^1.13.4",
"@opentelemetry/api": "^1.8.0",
"posthog-node": "^4.0.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.8.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "9.6.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-serializer-path": "^0.1.15",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@opentelemetry/api": "^1.8.0"
},
"engines": {
"node": ">=20.12.0"
},
"publishConfig": {
"@tapico:registry": "https://registry.npmjs.org/"
}
}