-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
78 lines (78 loc) · 2.22 KB
/
package.json
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
{
"name": "@pyroscope/nodejs",
"version": "0.4.3",
"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 --ignore-path ./.gitignore --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": "[email protected]:grafana/pyroscope-nodejs.git"
},
"bugs": {
"url": "https://github.com/grafana/pyroscope-nodejs/issues"
},
"dependencies": {
"@datadog/pprof": "^5.4.1",
"axios": "^0.28.0",
"debug": "^4.3.3",
"form-data": "^4.0.0",
"p-limit": "^3.1.0",
"regenerator-runtime": "^0.13.11",
"source-map": "^0.7.3"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/source-map": "^0.5.7",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitest/coverage-v8": "^2.0.5",
"busboy": "^1.6.0",
"eslint": "^8.5.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.18.1",
"husky": "^7.0.2",
"pinst": "^2.1.6",
"pprof-format": "^2.1.0",
"prettier": "^2.4.0",
"supertest": "^6.2.3",
"typescript": "^4.4.3",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=v18"
}
}