-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.48 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.48 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
{
"name": "pprof-it",
"version": "4.0.4",
"description": "Handy wrapper for pprof",
"repository": "https://github.com/jakebailey/pprof-it",
"author": "Jake Bailey",
"license": "MIT",
"engines": {
"node": ">=18"
},
"bin": "dist/main.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "node test.js",
"prepack": "rimraf dist && npm run build",
"version": "changeset version && npm install"
},
"dependencies": {
"@datadog/pprof": "^5.14.1",
"foreground-child": "^4.0.3",
"pprof-format": "^2.2.1",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@tsconfig/node18": "^18.2.6",
"@tsconfig/strictest": "^2.0.8",
"@types/foreground-child": "^2.0.2",
"@types/node": "^18.19.130",
"dprint": "^0.54.0",
"eslint": "^10.2.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.5.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
},
"packageManager": "npm@11.12.1+sha512.cdca14b85d647b3192028d02aadbe82d75f79a446aceea9874be98e6d768f20ebd3555770a48d0e9906106007877bbc690f715e9372f2e2dc644a3c3157fb14c"
}