-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "@lanterna-profiler/core",
"version": "2.10.0",
"description": "Agent-first Node.js CPU, memory & experimental async profiler — headless capture + analysis primitives",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/**/*.map",
"LICENSE"
],
"scripts": {
"prebuild": "node scripts/generate-version.js",
"build": "tsc -b",
"dev": "tsc -b --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.json",
"clean": "rm -rf dist .turbo .tsbuildinfo src/report/version.generated.ts",
"prepack": "npm run clean && npm run build"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25",
"chrome-remote-interface": "^0.34.0",
"magic-string": "^0.30.21",
"oxc-parser": "^0.138.0",
"pino": "^10.3.1",
"zod": "^4.4.3"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/arkerone/lanterna.git",
"directory": "packages/core"
},
"license": "MIT"
}