-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
74
75
76
{
"name": "tinybench",
"version": "6.0.1",
"description": "🔎 A simple, tiny and lightweight benchmarking library!",
"type": "module",
"packageManager": "pnpm@11.1.0",
"volta": {
"node": "24.15.0",
"pnpm": "11.1.0"
},
"engines": {
"node": ">=20.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 vitest.config.ts vitest.pretest.config.ts",
"lint:fix": "eslint --cache --fix src test examples eslint.config.js tsdown.config.ts vitest.config.ts vitest.pretest.config.ts",
"lint:typedoc": "typedoc --treatWarningsAsErrors --emit none",
"release": "bumpp package.json --commit --push --tag",
"ci:pretest": "vitest --config vitest.pretest.config.ts run",
"test": "vitest run",
"test:coverage": "vitest --coverage 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": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@cspell/eslint-plugin": "^10.0.0",
"@eslint/js": "^9.39.4",
"@size-limit/preset-small-lib": "^12.1.0",
"@size-limit/time": "^12.1.0",
"@types/node": "^24.12.4",
"@vitest/coverage-v8": "^4.1.6",
"bumpp": "^11.1.0",
"changelogithub": "^14.0.0",
"clean-publish": "^7.0.1",
"eslint": "^9.39.4",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-perfectionist": "^5.9.0",
"nano-staged": "^1.0.2",
"neostandard": "^0.13.0",
"simple-git-hooks": "^2.13.1",
"size-limit": "^12.1.0",
"tsdown": "^0.22.0",
"typedoc": "^0.28.19",
"typescript": "~6.0.3",
"vitest": "^4.1.6"
},
"keywords": [
"benchmark",
"tinylibs",
"tiny"
]
}