-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@platformatic/flame",
"version": "1.6.0",
"description": "CPU and heap profiling and flamegraph visualization tool using @platformatic/react-pprof",
"main": "lib/index.js",
"bin": {
"flame": "./bin/flame.js"
},
"files": [
"lib",
"bin",
"preload.js"
],
"scripts": {
"test": "borp --timeout=30000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rm -f cpu-profile-*.* heap-profile-*.* && rm -f test/cpu-profile-*.* test/heap-profile-*.* && rm -f examples/cpu-profile-*.* examples/heap-profile-*.* && rm -f *.csv"
},
"keywords": [
"pprof",
"profiling",
"flamegraph",
"cpu",
"heap",
"memory",
"performance"
],
"author": "Platformatic Inc. <oss@platformatic.dev> (http://platformatic.dev/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/flame.git"
},
"homepage": "https://github.com/platformatic/flame#readme",
"bugs": {
"url": "https://github.com/platformatic/flame/issues"
},
"dependencies": {
"@datadog/pprof": "^5.9.0",
"fastify": "^5.5.0",
"pprof-format": "^2.2.1",
"pprof-to-md": "^0.2.0",
"react-pprof": "^1.4.0"
},
"devDependencies": {
"@fastify/compress": "^8.1.0",
"@fastify/cors": "^11.1.0",
"@fastify/helmet": "^13.0.1",
"@fastify/pre-commit": "^2.2.0",
"autocannon": "^8.0.0",
"borp": "^0.21.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"eslint": "^9.0.0",
"express": "^5.0.0",
"helmet": "^8.0.0",
"light-my-request": "^6.6.0",
"morgan": "^1.10.0",
"neostandard": "^0.13.0"
},
"engines": {
"node": ">=22.6.0"
},
"pre-commit": [
"lint",
"test"
]
}