-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "typescript-error-deltas",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "Script for comparing the errors from two builds of the TypeScript compiler",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"build": "tsc -b .",
"test": "npm run build && vitest run"
},
"author": "Microsoft",
"license": "MIT",
"engines": {
"node": ">=24"
},
"dependencies": {
"@typescript/github-link": "^0.2.4",
"@typescript/server-harness": "^0.3.6",
"@typescript/server-replay": "^0.3.1",
"js-yaml": "^5.4.2",
"json5": "^2.2.3",
"markdown-escape": "^2.0.0",
"octokit": "^5.0.5",
"random-seed": "^0.3.0",
"tinyexec": "^1.3.1",
"vscode-jsonrpc": "^9.0.2",
"vscode-languageserver-protocol": "^3.18.3"
},
"devDependencies": {
"@types/markdown-escape": "^1.1.3",
"@types/node": "^24.10.1",
"@types/random-seed": "^0.3.5",
"typescript": "^7.0.2",
"vitest": "^5.0.1"
}
}