-
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.75 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.75 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": "stackgazer",
"version": "1.0.0",
"type": "module",
"sideEffects": false,
"description": "A single-page app for viewing Go stack traces",
"scripts": {
"build": "npm run typecheck && vite build --config build/vite.config.js",
"build:bundle": "npm run typecheck && vite build --config build/vite.standalone.config.js",
"typecheck": "tsc --noEmit",
"watch": "tsc --watch",
"serve": "python3 -m http.server 8000",
"pretest": "npm run build:bundle",
"test": "NODE_OPTIONS=\"--import tsx/esm\" node --test tests/*.test.ts",
"test:unit": "NODE_OPTIONS=\"--import tsx/esm\" node --test tests/parser.test.ts tests/app.test.ts",
"test:ui": "NODE_OPTIONS=\"--import tsx/esm\" node --test tests/ui.test.ts",
"test:benchmark": "NODE_OPTIONS=\"--import tsx/esm\" node tests/benchmark.test.ts",
"test:ui-benchmark": "npx playwright test --config=playwright.config.ts",
"test:coverage": "npx tsc test/parser.test.ts --outDir dist && c8 --reporter=text --reporter=html node dist/parser.test.js",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'"
},
"devDependencies": {
"@playwright/test": "^1.55.0",
"@types/d3-hierarchy": "^3.1.7",
"@types/node": "^24.3.0",
"c8": "^10.1.3",
"cssnano": "^7.1.0",
"esbuild": "^0.25.9",
"fflate": "^0.8.2",
"playwright": "^1.54.2",
"postcss": "^8.5.6",
"postcss-url": "^10.1.3",
"prettier": "^3.6.2",
"terser": "^5.43.1",
"tsx": "^4.20.4",
"typescript": "^5.0.0",
"vite": "^7.1.3",
"vite-plugin-html-minifier": "^1.0.5",
"vite-plugin-singlefile": "^2.3.0"
},
"dependencies": {
"d3-hierarchy": "^3.1.2",
"pprof-format": "^2.2.1"
}
}