-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.08 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
{
"name": "trace-cli",
"version": "0.3.0",
"description": "Execution tracer & analyzer — one JSON envelope across breakpoint traces (Node/Chrome CDP) and static analysis.",
"type": "module",
"bin": {
"trace-cli": "bin/trace"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./server": "./dist/server.js"
},
"files": [
"bin",
"dist",
"src",
"skills",
".claude-plugin",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"trace-cli": "node bin/trace",
"build": "npm run build:cli && npm run build:ui",
"build:cli": "tsc && cp src/shared/trace.schema.json dist/shared/trace.schema.json",
"build:ui": "npm --prefix ui install --ignore-scripts && ln -sfn ../.. ui/node_modules/trace-cli && npm --prefix ui run build && rm -rf dist/dashboard && cp -R ui/.next/standalone dist/dashboard && cp -R ui/.next/static dist/dashboard/ui/.next/static && { [ -d ui/public ] && cp -R ui/public dist/dashboard/ui/public || true; }",
"dev:ui": "ln -sfn ../.. ui/node_modules/trace-cli && npm --prefix ui run dev",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"test": "npm run build:cli && node --test test/*.test.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1071.0",
"@aws-sdk/s3-request-presigner": "^3.1071.0",
"chrome-remote-interface": "^0.34.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"commander": "^12.1.0",
"pg": "^8.21.0",
"reflect-metadata": "^0.2.2",
"source-map": "^0.7.4",
"typescript": "^6.0.3",
"typescript-language-server": "^5.3.0",
"vscode-jsonrpc": "^9.0.0",
"vscode-languageserver-protocol": "^3.18.0"
},
"keywords": [
"cdp",
"chrome-devtools-protocol",
"debugger",
"breakpoint",
"trace",
"node-inspector",
"cli",
"agent"
],
"license": "MIT",
"author": "Raunak Burrows",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0"
}
}