-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
76 lines (76 loc) · 1.96 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
74
75
76
{
"name": "tinybench",
"version": "3.1.0",
"type": "module",
"packageManager": "[email protected]",
"volta": {
"node": "22.12.0",
"pnpm": "9.15.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",
"typedoc": "typedoc",
"lint": "eslint --cache src test examples eslint.config.js tsup.config.ts",
"lint:fix": "eslint --cache --fix src test examples eslint.config.js 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.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@cspell/eslint-plugin": "^8.17.1",
"@eslint/js": "^9.17.0",
"@size-limit/preset-small-lib": "^11.1.6",
"@size-limit/time": "^11.1.6",
"@types/node": "^22.10.5",
"bumpp": "^9.9.3",
"changelogithub": "^0.13.11",
"clean-publish": "^5.1.0",
"eslint": "^9.17.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-perfectionist": "^4.6.0",
"nano-staged": "^0.8.0",
"neostandard": "^0.12.0",
"p-limit": "^6.2.0",
"simple-git-hooks": "^2.11.1",
"size-limit": "^11.1.6",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "~5.7.2",
"vitest": "^2.1.8"
},
"keywords": [
"benchmark",
"tinylibs",
"tiny"
]
}