-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 946 Bytes
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
{
"name": "migration-toolkit",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"start": "tsx src/server/index.ts",
"doctor": "tsx src/server/doctor.ts",
"compatibility-check": "tsx src/compatibility-check/cli.ts",
"bxml-generator": "tsx src/bxml-generator/cli.ts",
"bench": "tsx scripts/bench-translate.ts",
"bench:overhead": "tsx scripts/bench-translator-overhead.ts",
"latency:report": "tsx scripts/latency-report.ts",
"playground:build": "tsx scripts/build-playground.ts"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"fast-xml-parser": "^5.8.0",
"fastify": "^5.8.5",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.2",
"@types/ws": "^8.18.1",
"esbuild": "^0.28.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}