-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1000 Bytes
/
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
38
39
40
41
42
43
{
"name": "ts-check-perf",
"version": "0.0.0",
"description": "Measuring and comparing type-checking speed of TS samples",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"require": "./dist/main.js",
"types": "./dist/main.d.ts"
},
"./patchTypeScript": {
"require": "./dist/patchTypeScript.js",
"types": "./dist/patchTypeScript.d.ts"
}
},
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "pnpm build"
},
"keywords": [
"typscript",
"type-check",
"benchmark",
"performance",
"speed"
],
"author": "Roman Kushyn",
"license": "ISC",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/node": "^20.10.2",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"benchmark": "^2.1.4",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"typescript": "5.x"
}
}