-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.62 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.62 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@pyroscope/nodejs",
"version": "0.4.11",
"description": "pyroscope nodejs package",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json && echo '{\"type\":\"module\"}' >./dist/esm/package.json",
"clean": "node tools/cleanup",
"package": "yarn build && yarn pack",
"format:fix": "prettier --write .",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"test": "vitest",
"test:cov": "vitest run --coverage",
"addscope": "node tools/packagejson name @pyroscope"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [],
"author": "Grafana Labs",
"license": "Apache-2.0",
"homepage": "https://github.com/grafana/pyroscope-nodejs",
"repository": {
"type": "git",
"url": "http://github.com/grafana/pyroscope-nodejs.git"
},
"bugs": {
"url": "https://github.com/grafana/pyroscope-nodejs/issues"
},
"dependencies": {
"@datadog/pprof": "5.13.3",
"debug": "^4.4.3",
"p-limit": "^7.3.0",
"regenerator-runtime": "^0.14.1",
"source-map": "^0.7.6"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/debug": "^4.1.12",
"@types/source-map": "^0.5.7",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"busboy": "^1.6.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"fastify": "^5.7.4",
"husky": "^9.1.7",
"pinst": "^3.0.0",
"pprof-format": "^2.2.1",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"express": "^4.0.0 || ^5.0.0",
"fastify": "^5.7.4"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
}
},
"engines": {
"node": ">=20"
},
"resolutions": {
"brace-expansion": "^5.0.5",
"flatted": "^3.4.2",
"picomatch": "^4.0.4"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}