-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1017 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1017 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
41
42
43
44
45
{
"name": "@codspeed/vitest-plugin",
"version": "5.2.0",
"description": "vitest plugin for CodSpeed",
"keywords": [
"codspeed",
"benchmark",
"vitest",
"performance"
],
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"type": "module",
"files": [
"dist"
],
"author": "Adrien Cacciaguerra <adrien@codspeed.io>",
"repository": "https://github.com/CodSpeedHQ/codspeed-node",
"homepage": "https://codspeed.io",
"license": "Apache-2.0",
"scripts": {
"bench": "vitest bench"
},
"dependencies": {
"@codspeed/core": "workspace:^5.2.0"
},
"peerDependencies": {
"tinybench": ">=2.9.0",
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"vitest": "^3.2 || ^4"
},
"devDependencies": {
"@total-typescript/shoehorn": "^0.1.1",
"execa": "^8.0.1",
"tinybench": "^2.9.0",
"vite": "^7.0.0",
"vitest": "^4.0.18"
}
}