-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.95 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.95 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
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": "4.0.1",
"description": "🔎 A simple, tiny and lightweight benchmarking library!",
"type": "module",
"packageManager": "pnpm@10.12.1",
"volta": {
"node": "22.16.0",
"pnpm": "10.12.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"directory": "package"
},
"scripts": {
"prepare": "pnpm exec simple-git-hooks",
"dev": "tsdown --watch",
"build": "tsdown",
"prepublishOnly": "pnpm build && rm -rf ./package && clean-publish",
"postpublish": "rm -rf ./package",
"typecheck": "tsc --noEmit",
"typedoc": "typedoc",
"lint": "eslint --cache src test examples eslint.config.js tsdown.config.ts",
"lint:fix": "eslint --cache --fix src test examples eslint.config.js tsdown.config.ts",
"release": "bumpp package.json --commit --push --tag",
"test": "vitest --retry=5 --run"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**"
],
"repository": "tinylibs/tinybench",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@cspell/eslint-plugin": "^9.0.2",
"@eslint/js": "^9.28.0",
"@size-limit/preset-small-lib": "^11.2.0",
"@size-limit/time": "^11.2.0",
"@types/node": "^22.15.31",
"bumpp": "^10.1.1",
"changelogithub": "^13.15.0",
"clean-publish": "^5.2.1",
"eslint": "^9.28.0",
"eslint-plugin-jsdoc": "^50.8.0",
"eslint-plugin-perfectionist": "^4.14.0",
"nano-staged": "^0.8.0",
"neostandard": "^0.12.1",
"p-limit": "^6.2.0",
"simple-git-hooks": "^2.13.0",
"size-limit": "^11.2.0",
"tsdown": "^0.12.7",
"typedoc": "^0.28.5",
"typescript": "~5.8.3",
"vitest": "^3.2.3"
},
"keywords": [
"benchmark",
"tinylibs",
"tiny"
]
}