-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 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
{
"name": "pprof-it",
"version": "3.0.0",
"description": "Handy wrapper for pprof",
"repository": "https://github.com/jakebailey/pprof-it",
"author": "Jake Bailey",
"license": "MIT",
"engines": {
"node": ">=16"
},
"bin": "dist/main.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepack": "rimraf dist && npm run build"
},
"dependencies": {
"@datadog/pprof": "^5.5.1",
"foreground-child": "^3.3.0",
"pprof-format": "^2.1.0",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.0",
"@eslint/js": "^9.20.0",
"@tsconfig/node14": "^14.1.2",
"@types/foreground-child": "^2.0.2",
"@types/node": "^18.19.76",
"@types/signal-exit": "^3.0.4",
"dprint": "^0.49.0",
"eslint": "^9.20.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^15.15.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.24.1"
},
"packageManager": "npm@10.9.2+sha512.8ab88f10f224a0c614cb717a7f7c30499014f77134120e9c1f0211ea3cf3397592cbe483feb38e0c4b3be1c54e347292c76a1b5edb94a3289d5448484ab8ac81"
}