-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) 路 2.15 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) 路 2.15 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
65
66
67
68
69
70
71
72
{
"name": "@vieval/root",
"type": "module",
"private": true,
"packageManager": "pnpm@11.9.0",
"description": "Evaluation framework based on Vitest, the testing framework you familiar with, for agents, models, and more.",
"author": {
"name": "Vieval Team",
"email": "vieval@moeru.ai",
"url": "https://github.com/vieval-dev"
},
"license": "MIT",
"scripts": {
"postinstall": "pnpm exec simple-git-hooks && pnpm run build:packages",
"dev": "pnpm -r -F vieval build",
"dev:docs": "pnpm -F @vieval/docs dev",
"build": "pnpm run build:packages",
"build:docs": "pnpm -F @vieval/docs build",
"build:packages": "turbo run build -F=\"./packages/*\"",
"preview:docs": "pnpm -F @vieval/docs preview",
"test": "vitest --coverage",
"test:run": "vitest run",
"lint": "moeru-lint .",
"lint:fix": "moeru-lint --fix .",
"typecheck": "pnpm -rF=\"./packages/*\" --parallel typecheck",
"up": "taze -w -r -I && pnpm prune && pnpm dedupe",
"nolyfill": "pnpm dlx nolyfill",
"eval:run": "pnpm -F vieval eval:run"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@arethetypeswrong/core": "catalog:",
"@moeru/eslint-config": "catalog:",
"@types/node": "catalog:",
"@unocss/eslint-plugin": "catalog:",
"@unocss/reset": "catalog:",
"@vitest/coverage-v8": "catalog:vitest",
"bumpp": "catalog:",
"eslint": "catalog:",
"eslint-plugin-oxlint": "catalog:",
"nano-staged": "catalog:",
"oxc-minify": "catalog:",
"oxlint": "catalog:",
"publint": "catalog:",
"rollup": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"tinyexec": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:",
"unplugin-raw": "catalog:",
"unplugin-unused": "catalog:",
"vite": "catalog:",
"vite-plugin-inspect": "catalog:",
"vitest": "catalog:vitest"
},
"workspaces": [
"docs",
"packages/**",
"evals/**",
"examples/**"
],
"simple-git-hooks": {
"pre-commit": "pnpm nano-staged"
},
"nano-staged": {
"*": "moeru-lint --fix"
}
}