-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 KB
/
package.json
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
{
"name": "@typescript/benchmarking",
"version": "0.0.0",
"private": true,
"author": "Microsoft Corp.",
"license": "MIT",
"engines": {
"node": ">= 18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^18.19.75",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"dprint": "^0.49.0",
"eslint": "^9.19.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^2.1.9"
},
"packageManager": "[email protected]+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4",
"scripts": {
"build": "pnpm run --filter './scripts' --filter './ts-perf' build",
"test": "vitest"
},
"pnpm": {
"requiredScripts": [
"build"
],
"overrides": {
"@types/node": "$@types/node"
}
}
}