-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 984 Bytes
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": "@dd/apps-plugin",
"packageManager": "yarn@4.0.2",
"license": "MIT",
"private": true,
"author": "Datadog",
"description": "A plugin to upload assets to Datadog's storage",
"homepage": "https://github.com/DataDog/build-plugins/tree/main/packages/plugins/apps#readme",
"repository": {
"type": "git",
"url": "https://github.com/DataDog/build-plugins",
"directory": "packages/plugins/apps"
},
"buildPlugin": {
"hideFromRootReadme": true
},
"exports": {
".": "./src/index.ts",
"./*": "./src/*.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dd/core": "workspace:*",
"acorn": "8.14.0",
"chalk": "2.3.1",
"esbuild": "0.25.8",
"glob": "11.1.0",
"jszip": "3.10.1",
"pretty-bytes": "5.6.0"
},
"devDependencies": {
"typescript": "5.4.3",
"vite": "6.3.5"
}
}