-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathpackage.json
37 lines (37 loc) · 969 Bytes
/
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
{
"name": "@datadog/browser-rum-slim",
"version": "6.0.0",
"license": "Apache-2.0",
"main": "cjs/entries/main.js",
"module": "esm/entries/main.js",
"types": "cjs/entries/main.d.ts",
"scripts": {
"build": "run-p build:cjs build:esm build:bundle",
"build:bundle": "rm -rf bundle && SDK_SETUP=cdn webpack --mode=production",
"build:cjs": "rm -rf cjs && tsc -p tsconfig.cjs.json",
"build:esm": "rm -rf esm && tsc -p tsconfig.esm.json"
},
"dependencies": {
"@datadog/browser-core": "6.0.0",
"@datadog/browser-rum-core": "6.0.0"
},
"peerDependencies": {
"@datadog/browser-logs": "6.0.0"
},
"peerDependenciesMeta": {
"@datadog/browser-logs": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/DataDog/browser-sdk.git",
"directory": "packages/rum-slim"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public"
}
}