-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "jmeter-docs",
"type": "module",
"version": "1.0.0",
"description": "Community documentation site for Apache JMeter",
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=20.18.0 <25"
},
"scripts": {
"dev": "astro dev",
"build": "pnpm run lint && node scripts/generate-llms-full.mjs && node scripts/generate-llms-chunks.mjs && astro build",
"preview": "astro preview",
"astro": "astro",
"convert": "node tools/convert.mjs",
"generate-sidebar": "node scripts/generate-sidebar.mjs",
"generate-llms-full": "node scripts/generate-llms-full.mjs",
"generate-llms-chunks": "node scripts/generate-llms-chunks.mjs",
"lint": "vitest run tests/unit/schema-validation.test.mjs tests/unit/seo-validation.test.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@ai-sdk/google": "^4.0.8",
"@astrojs/check": "^0.9.9",
"@astrojs/starlight": "^0.41.0",
"@astrojs/starlight-docsearch": "^0.7.0",
"@astrojs/vercel": "^11.0.2",
"@fontsource/geist-sans": "^5.2.5",
"@fontsource/lora": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"@upstash/redis": "^1.38.0",
"ai": "^7.0.15",
"astro": "^7.0.0",
"highlight.js": "^11.11.1",
"lucode-starlight": "^0.1.6",
"marked": "^18.0.5",
"satori": "^0.12.2",
"sharp": "^0.34.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.9",
"fast-xml-parser": "^5.2.3",
"jsdom": "^29.1.1",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
}
}