-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@datadog/rollup-plugin",
"packageManager": "yarn@4.0.2",
"version": "3.2.5",
"license": "MIT",
"author": "Datadog",
"description": "Datadog Rollup Plugin",
"keywords": [
"datadog",
"rollup",
"bundler",
"plugin",
"unplugin"
],
"homepage": "https://github.com/DataDog/build-plugins#readme",
"repository": {
"type": "git",
"url": "https://github.com/DataDog/build-plugins",
"directory": "packages/published/rollup-plugin"
},
"main": "./dist/src/index.js",
"module": "./dist/src/index.mjs",
"types": "./dist/src/index.d.ts",
"exports": {
"./dist/src": "./dist/src/index.js",
"./dist/src/*": "./dist/src/*",
"./dist-basic/src": "./dist-basic/src/index.js",
"./dist-basic/src/*": "./dist-basic/src/*",
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"types": "./dist/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
}
},
"files": [
"dist"
],
"scripts": {
"buildCmd": "rollup --config rollup.config.mjs",
"buildBasic": "rm -rf dist-basic && rollup --config rollup.config.basic.mjs",
"build": "yarn clean && yarn buildCmd",
"clean": "rm -rf dist",
"prepack": "yarn build",
"typecheck": "tsc --noEmit",
"watch": "yarn build --watch"
},
"dependencies": {
"@datadog/js-instrumentation-wasm": "1.0.8",
"@jridgewell/remapping": "2.3.5",
"async-retry": "1.3.3",
"chalk": "2.3.1",
"eslint-scope": "7.2.2",
"glob": "11.1.0",
"json-stream-stringify": "3.1.6",
"jszip": "3.10.1",
"magic-string": "0.30.21",
"oauth4webapi": "3.8.6",
"outdent": "0.8.0",
"p-queue": "6.6.2",
"pretty-bytes": "5.6.0",
"simple-git": "3.36.0",
"unplugin": "2.3.11"
},
"devDependencies": {
"@babel/core": "7.24.5",
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "7.24.1",
"@dd/factory": "workspace:*",
"@dd/tools": "workspace:*",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-esm-shim": "0.1.8",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"dts-bundle-generator": "patch:dts-bundle-generator@npm%3A9.5.1#~/.yarn/patches/dts-bundle-generator-npm-9.5.1-0927b6826f.patch",
"esbuild": "0.25.8",
"rollup": "4.45.1",
"rollup-plugin-esbuild": "6.1.1",
"typescript": "5.4.3"
},
"peerDependencies": {
"@babel/parser": "^7.24.5",
"@babel/traverse": "^7.24.5",
"@babel/types": "^7.24.5",
"rollup": ">= 3.x < 5.x"
},
"peerDependenciesMeta": {
"@babel/parser": {
"optional": true
},
"@babel/traverse": {
"optional": true
},
"@babel/types": {
"optional": true
}
},
"optionalDependencies": {
"@napi-rs/keyring": "1.3.0"
}
}