-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 932 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 932 Bytes
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
{
"name": "@highlight-run/react",
"version": "19.0.14",
"description": "The official Highlight SDK for React",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/observability-sdk.git"
},
"peerDependencies": {
"highlight.run": "workspace:*",
"react": ">=16",
"react-dom": ">=16"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"typegen": "tsup src/index.tsx --dts-only",
"build": "tsup src/index.tsx --format cjs,esm --dts",
"dev": "yarn build --watch"
},
"devDependencies": {
"@types/node": "^20.14.7",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"classnames": "^2.5.1",
"css-tree": "^2.3.1",
"esbuild-css-modules-plugin": "^2.7.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"files": [
"dist",
"package.json"
]
}