-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.57 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
{
"name": "vitest-evals-workspace",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm -r --if-present run build",
"build:action": "pnpm --filter @vitest-evals/github-reporter run build:action",
"evals": "node ./scripts/run-workspace-evals.mjs",
"evals:info": "node ./scripts/run-workspace-evals.mjs --info",
"evals:verbose": "node ./scripts/run-workspace-evals.mjs --info",
"evals:fail": "node ./scripts/run-workspace-evals.mjs --fail",
"docs": "pnpm --filter vitest-evals-docs run dev",
"docs:check": "node ./scripts/check-public-docs.mjs",
"docs:build": "pnpm --filter vitest-evals-docs run build",
"docs:preview": "pnpm --filter vitest-evals-docs run preview",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"prepare": "simple-git-hooks",
"release:check": "node ./scripts/check-release-config.mjs",
"typecheck": "tsc --noEmit",
"test": "dotenv -e .env -e .env.local -- vitest run packages apps scripts --config=./vitest.config.ts --reporter=./packages/vitest-evals/src/reporter.ts",
"test:watch": "dotenv -e .env -e .env.local -- vitest packages apps scripts --config=./vitest.config.ts --reporter=./packages/vitest-evals/src/reporter.ts",
"test:ci": "dotenv -e .env -e .env.local -- vitest run packages apps scripts --config=./vitest.config.ts --coverage --reporter=./packages/vitest-evals/src/reporter.ts --reporter=junit --outputFile=tests.junit.xml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/vitest-evals.git"
},
"author": "David Cramer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/getsentry/vitest-evals/issues"
},
"homepage": "https://github.com/getsentry/vitest-evals#readme",
"description": "",
"devDependencies": {
"@ai-sdk/openai": "^3.0.48",
"@biomejs/biome": "^1.9.4",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"ai": "^6.0.141",
"autoevals": "^0.0.132",
"dotenv-cli": "^8.0.0",
"lint-staged": "^15.5.2",
"openai": "^6.33.0",
"simple-git-hooks": "^2.13.0",
"tinyrainbow": "^3.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.2",
"zod": "^4.3.6"
},
"simple-git-hooks": {
"pre-commit": "npm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome lint --fix --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}