-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.75 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
{
"name": "web",
"private": true,
"version": "0.1.0",
"description": "TimetableKit public playground and documentation site.",
"scripts": {
"dev": "node ../../scripts/prepare-ocr-assets.mjs && next dev",
"build": "corepack pnpm --filter @ndycode/timetablekit build && corepack pnpm --filter @ndycode/timetablekit-agent build && corepack pnpm --filter @ndycode/timetablekit-provider-tesseract build && corepack pnpm --filter @ndycode/timetablekit-provider-pdfjs build && node ../../scripts/prepare-ocr-assets.mjs && next build",
"typecheck": "corepack pnpm --filter @ndycode/timetablekit build && corepack pnpm --filter @ndycode/timetablekit-agent build && corepack pnpm --filter @ndycode/timetablekit-provider-tesseract build && corepack pnpm --filter @ndycode/timetablekit-provider-pdfjs build && tsc --noEmit",
"lint": "pnpm --dir ../.. lint",
"test:a11y": "pnpm exec playwright test --config ../../playwright.config.ts --grep @a11y",
"test": "pnpm exec playwright test --config ../../playwright.config.ts",
"test:unit": "corepack pnpm --filter @ndycode/timetablekit-agent build && pnpm exec vitest run lib/input-boundary.test.ts lib/playground-model.test.ts app/schema/routes.unit.test.ts --config ../../vitest.config.ts"
},
"dependencies": {
"@ndycode/timetablekit": "workspace:*",
"@ndycode/timetablekit-agent": "workspace:*",
"@ndycode/timetablekit-provider-pdfjs": "workspace:*",
"@ndycode/timetablekit-provider-tesseract": "workspace:*",
"@tesseract.js-data/eng": "1.0.0",
"geist": "1.7.2",
"next": "16.3.4",
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@types/node": "24.10.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"typescript": "5.9.3"
}
}