-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"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.4.1",
"foreground-child": "^3.3.0",
"pprof-format": "^2.1.0",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@tsconfig/node14": "^14.1.2",
"@types/foreground-child": "^2.0.2",
"@types/node": "^18.19.67",
"@types/signal-exit": "^3.0.4",
"dprint": "^0.47.6",
"eslint": "^9.16.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"packageManager": "npm@11.1.0+sha512.acf301ad9b9ddba948fcb72341e2f0fcae477f56a95cc2a092934d133a7461062633cefbf93d5934a3dc0768674e2edee9f04dcfcc4bb4c327ff0e3a7d552a1b"
}