-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 963 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 963 Bytes
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
{
"name": "@codspeed/tinybench-plugin",
"version": "5.2.0",
"description": "tinybench compatibility layer for CodSpeed",
"keywords": [
"codspeed",
"benchmark",
"tinybench",
"performance"
],
"main": "dist/index.cjs",
"module": "dist/index.es5.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es5.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"author": "Arthur Pastel <arthur@codspeed.io>",
"repository": "https://github.com/CodSpeedHQ/codspeed-node",
"homepage": "https://codspeed.io",
"license": "Apache-2.0",
"devDependencies": {
"@types/stack-trace": "^0.0.30",
"esbuild-register": "^3.4.2",
"tinybench": "^4.0.1",
"vitest": "^3.2.4"
},
"dependencies": {
"@codspeed/core": "workspace:^5.2.0",
"stack-trace": "1.0.0-pre2"
},
"peerDependencies": {
"tinybench": ">=4.0.1"
}
}