-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "@dagger.io/vitest",
"description": "Vitest Test Runner with Open telemetry support for auto-instrumentation with dagger",
"author": "dagger",
"license": "Apache-2.0",
"version": "0.0.2",
"type": "module",
"exports": {
"./register": {
"types": "./dist/types/register.d.ts",
"import": "./dist/esm/register.mjs",
"require": "./dist/cjs/register.cjs"
}
},
"scripts": {
"reset": "rm -rf node_modules && rm -rf dist",
"build:clean": "bun run reset && bun install && bun run build",
"build": "bun run build:js && bun run build:types",
"build:types": "bunx tsc -p tsconfig.build.json",
"build:js": "rollup -c",
"lint": "bunx biome check",
"lint:write": "bunx biome check --write"
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/bun": "latest",
"rollup": "^4.53.3",
"tslib": "^2.8.1",
"vitest": "^4.0.17"
},
"peerDependencies": {
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/dagger/vitest"
},
"keywords": [
"vitest",
"test",
"dagger",
"opentelemetry"
],
"files": [
"dist",
"README.md"
],
"bugs": {
"url": "https://github.com/dagger/vitest/issues"
},
"homepage": "https://github.com/dagger/vitest",
"dependencies": {
"@dagger.io/telemetry": "^0.0.5",
"@opentelemetry/sdk-node": "^0.209.0",
"import-in-the-middle": "^2.0.6"
}
}