-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 921 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
{
"name": "@microsoft/edge-devtools-crash-analyzer-support",
"version": "1.0.0",
"description": "Supports un-minifying your stack traces in the Microsoft Edge DevTools Crash Analyzer tool",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Microsoft",
"repository": {
"url": "https://github.com/microsoftedge/edge-devtools-crash-analyzer-support.git",
"type": "git"
},
"private": false,
"homepage": "https://github.com/microsoftedge/edge-devtools-crash-analyzer-support",
"license": "MIT",
"devDependencies": {
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.83.1",
"webpack-cli": "^5.1.1"
},
"files": [
"dist/*.*"
]
}