-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "@vishyfishy2/trace-server",
"version": "0.7.0",
"type": "module",
"description": "Unified dataset kernel for traces, telemetry, bundles, and raw data. Built for AI agents.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/f1shy-dev/agent-devtools-trace.git"
},
"keywords": [
"devtools",
"trace",
"chrome",
"performance",
"agent",
"cli",
"node"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"bin": {
"trace-server": "./dist/cli/index.js",
"version": "./version.ts"
},
"scripts": {
"build": "node scripts/build.mjs",
"dev:server": "node dist/server/index.js",
"lint": "oxlint",
"fmt": "oxfmt --write src/",
"fmt:check": "oxfmt --check src/",
"typecheck": "npx @typescript/native-preview",
"test": "vitest",
"prepublishOnly": "npm run build && npm run typecheck"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"vitest": "^4.1.0"
},
"dependencies": {
"citty": "^0.2.1",
"esbuild": "^0.27.4",
"typescript": "^5.9.0"
}
}