-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.18 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
{
"name": "exgen-bench",
"version": "0.1.0",
"description": "Run and evaluate systems that generate complete programming exercises.",
"license": "MIT",
"type": "module",
"private": true,
"bin": {
"exgen": "./src/cli.ts"
},
"scripts": {
"check": "bun run check:runtime && bun run format:check && bun run lint && bun run typecheck && bun run test:coverage",
"browser:test": "playwright test",
"check:runtime": "bun -e 'const expected = (await Bun.file(\".bun-version\").text()).trim(); if (Bun.version !== expected) throw new Error(`Expected Bun ${expected}, received ${Bun.version}`)'",
"cli": "bun run src/cli.ts",
"demo:generate": "bun run scripts/generate-site-demo.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"schemas": "bun run scripts/export-schemas.ts",
"site:build": "bun run site/build.ts",
"site:serve": "bun run site/serve.ts",
"site:validate": "bun run site/validate.ts",
"smoke": "bun run scripts/smoke-full.ts",
"test": "bun test ./tests/*.test.ts",
"test:coverage": "bun test ./tests/*.test.ts --coverage",
"typecheck": "tsc --noEmit && tsc --project site/tsconfig.json --noEmit"
},
"dependencies": {
"@base-ui/react": "1.6.0",
"@commander-js/extra-typings": "15.0.0",
"@fontsource-variable/geist": "5.3.0",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"csv-stringify": "6.8.1",
"decimal.js": "10.6.0",
"fflate": "0.8.3",
"json-canonicalize": "2.0.0",
"lucide-react": "1.28.0",
"p-queue": "9.3.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"recharts": "3.10.1",
"tailwind-merge": "3.6.0",
"yaml": "2.9.0",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@biomejs/biome": "2.5.6",
"@playwright/test": "1.62.1",
"@tailwindcss/vite": "4.3.3",
"@types/bun": "1.3.14",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.5",
"shadcn": "4.16.0",
"tailwindcss": "4.3.3",
"tw-animate-css": "1.4.0",
"typescript": "7.0.2",
"vite": "8.2.0"
}
}