-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 2.15 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
{
"name": "@dd/tools",
"license": "MIT",
"private": true,
"author": "Datadog",
"description": "Developer tools for Datadog's Build Plugins monorepo",
"homepage": "https://github.com/DataDog/build-plugins/tree/main/packages/tools#readme",
"repository": {
"type": "git",
"url": "https://github.com/DataDog/build-plugins",
"directory": "packages/tools"
},
"packageManager": "yarn@4.0.2",
"exports": {
"./rollupConfig.mjs": "./src/rollupConfig.mjs",
"./commands/oss/templates": "./src/commands/oss/templates.ts",
"./bundlers": "./src/bundlers.ts",
"./*": "./src/*.ts"
},
"scripts": {
"cli": "ts-node -T --project ./tsconfig.json ./src/index.ts"
},
"devDependencies": {
"@rollup/plugin-esm-shim": "0.1.7",
"@types/chalk": "2.2.0",
"@types/glob": "7.1.4",
"@types/lodash.template": "^4",
"@types/node": "^18",
"@types/webpack4": "npm:@types/webpack@4.41.38",
"lodash.template": "4.5.0",
"ts-node": "10.9.2",
"typescript": "5.4.3"
},
"dependencies": {
"@datadog/esbuild-plugin": "workspace:*",
"@datadog/rollup-plugin": "workspace:*",
"@datadog/rspack-plugin": "workspace:*",
"@datadog/vite-plugin": "workspace:*",
"@datadog/webpack-plugin": "workspace:*",
"@dd/assets": "workspace:*",
"@dd/core": "workspace:*",
"@dd/error-tracking-plugin": "workspace:*",
"@dd/factory": "workspace:*",
"@dd/rum-plugin": "workspace:*",
"@dd/telemetry-plugin": "workspace:*",
"@inquirer/checkbox": "2.3.3",
"@inquirer/input": "2.1.7",
"@inquirer/select": "2.3.3",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rspack/core": "1.1.2",
"chalk": "2.3.1",
"clipanion": "4.0.0-rc.3",
"esbuild": "0.24.0",
"glob": "7.1.6",
"outdent": "0.8.0",
"typanion": "3.14.0",
"vite": "5.4.10",
"webpack": "5.92.1",
"webpack4": "npm:webpack@4.47.0",
"webpack5": "npm:webpack@5.92.1"
}
}