-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 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
{
"name": "@datadog/browser-rum-react",
"version": "6.30.0",
"license": "Apache-2.0",
"main": "cjs/entries/main.js",
"module": "esm/entries/main.js",
"types": "cjs/entries/main.d.ts",
"scripts": {
"build": "node ../../scripts/build/build-package.ts --modules",
"prepack": "npm run build"
},
"dependencies": {
"@datadog/browser-core": "6.30.0",
"@datadog/browser-rum-core": "6.30.0"
},
"peerDependencies": {
"react": "18 || 19",
"react-router": "6 || 7",
"react-router-dom": "6 || 7"
},
"peerDependenciesMeta": {
"@datadog/browser-rum": {
"optional": true
},
"@datadog/browser-rum-slim": {
"optional": true
},
"react": {
"optional": true
},
"react-router": {
"optional": true
},
"react-router-dom": {
"optional": true
}
},
"devDependencies": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.13.0",
"react-router-dom": "7.13.0",
"react-router-dom-6": "npm:react-router-dom@6.30.3"
},
"repository": {
"type": "git",
"url": "https://github.com/DataDog/browser-sdk.git",
"directory": "packages/rum-react"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public"
}
}