-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "@dd/telemetry-plugin",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"author": "Datadog",
"description": "Telemetry plugin distributed with Datadog's Build Plugins",
"homepage": "https://github.com/DataDog/build-plugins/tree/main/packages/plugins/telemetry#readme",
"repository": {
"type": "git",
"url": "https://github.com/DataDog/build-plugins",
"directory": "packages/plugins/telemetry"
},
"exports": {
".": "./src/index.ts",
"./esbuild-plugin/*": "./src/esbuild-plugin/*.ts",
"./webpack-plugin/*": "./src/webpack-plugin/*.ts",
"./common/*": "./src/common/*.ts",
"./common/metrics/*": "./src/common/metrics/*.ts",
"./common/output/*": "./src/common/output/*.ts",
"./*": "./src/*.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dd/core": "workspace:*",
"@dd/internal-build-report-plugin": "workspace:*",
"chalk": "2.3.1",
"pretty-bytes": "5.6.0"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"esbuild": "0.24.0"
},
"peerDependencies": {
"esbuild": ">=0.x",
"webpack": ">= 4.x < 6.x"
},
"peerDependenciesMeta": {
"esbuild": {
"optional": true
},
"webpack": {
"optional": true
}
}
}