-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.67 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
{
"name": "@jantimon/web-performance-debugger",
"version": "1.1.0",
"description": "Drive Chrome or Firefox (Puppeteer), or profile Node in-process, to attribute layout/paint/invalidation work and CPU self-time back to source lines, with isolated timing and CI gating",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"web-performance-debugger": "dist/cli.js",
"wpd": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=24"
},
"scripts": {
"prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"format": "oxfmt --write \"src/**/*.ts\" \"examples/*.mjs\"",
"format:check": "oxfmt --check \"src/**/*.ts\" \"examples/*.mjs\"",
"knip": "knip --no-config-hints --no-tag-hints",
"pretest": "npm run build",
"test": "node --test test/unit/*.test.mjs",
"pretest:measurement": "npm run build",
"test:measurement": "node --test --test-concurrency=1 test/measurement/*.test.mjs",
"pretest:e2e": "npm run build",
"test:e2e": "WPD_E2E_REQUIRED=1 node --test test/cli.e2e.test.mjs",
"pretest:e2e:firefox": "npm run build",
"test:e2e:firefox": "WPD_E2E_FIREFOX_REQUIRED=1 node --test test/firefox.e2e.test.mjs",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish",
"prepublishOnly": "npm run build",
"start": "node dist/cli.js"
},
"keywords": [
"chrome",
"puppeteer",
"performance",
"layout",
"reflow",
"forced-reflow",
"layout-thrashing",
"inp",
"profiling",
"cli"
],
"author": "Jan Nicklas",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jantimon/web-performance-debugger.git"
},
"bugs": {
"url": "https://github.com/jantimon/web-performance-debugger/issues"
},
"homepage": "https://github.com/jantimon/web-performance-debugger#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.31",
"@toon-format/toon": "^2.3.0",
"commander": "^15.0.0",
"puppeteer": "25.4.0",
"tldts": "^7.4.9"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^24.0.0",
"knip": "^6.29.0",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"typescript": "^6.0.3"
}
}