-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
73 lines (73 loc) · 1.87 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "tinybench",
"version": "3.0.3",
"type": "module",
"packageManager": "pnpm@9.12.3",
"volta": {
"node": "22.11.0",
"pnpm": "9.12.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"directory": "package"
},
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm build && rm -rf ./package && clean-publish",
"postpublish": "rm -rf ./package",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache src test examples tsup.config.ts",
"lint:fix": "eslint --cache --fix src test examples tsup.config.ts",
"release": "bumpp package.json --commit --push --tag",
"test": "vitest --retry=5 --run"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**"
],
"repository": "tinylibs/tinybench",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@size-limit/preset-small-lib": "^11.1.6",
"@size-limit/time": "^11.1.6",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"bumpp": "^9.8.1",
"changelogithub": "^0.13.11",
"clean-publish": "^5.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"nano-staged": "^0.8.0",
"p-limit": "^6.1.0",
"simple-git-hooks": "^2.11.1",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typescript": "~5.6.3",
"vitest": "^2.1.4"
},
"keywords": [
"benchmark",
"tinylibs",
"tiny"
]
}