-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.19 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
{
"name": "lanterna-monorepo",
"private": true,
"version": "0.1.0",
"description": "Agent-first Node.js CPU, memory & experimental async profiler — monorepo root",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "npm run test:e2e -w @lanterna-profiler/cli",
"test:e2e:smoke": "npm run test:e2e:smoke -w @lanterna-profiler/cli",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"bench": "node bench/run.mjs",
"bench:json": "node bench/run.mjs --json",
"bench:baseline": "node bench/run.mjs --json > bench/baseline.json",
"bench:check": "node scripts/check-bench.mjs",
"dev": "turbo run dev",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"docs:generate": "npm run build -w @lanterna-profiler/core && node scripts/generate-async-report-schema.mjs",
"docs:check": "npm run build -w @lanterna-profiler/core && node scripts/generate-async-report-schema.mjs --check",
"typecheck": "turbo run typecheck",
"pack:check": "node scripts/check-packages.mjs",
"clean": "turbo run clean && rm -rf node_modules/.cache .turbo",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run clean && turbo run build && npm run pack:check && changeset publish",
"prepare": "husky"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@11.5.2",
"lint-staged": {
"*.{ts,js,cjs,mjs,json,jsonc,md}": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@changesets/cli": "2.31.0",
"@types/chrome-remote-interface": "^0.34.0",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.9",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"turbo": "2.10.2",
"typescript": "^6.0.2",
"vitest": "^4.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/arkerone/lanterna.git"
},
"license": "MIT"
}