-
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.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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": "nca-astro-content",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"start": "node ./dist/server/entry.mjs",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "astro check && tsc --noEmit",
"test:a11y": "playwright test --project=chromium",
"test:a11y:report": "playwright test --project=chromium --reporter=html"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@astrojs/db": "^0.18.3",
"@astrojs/node": "^9.5.1",
"@astrojs/react": "^4.4.2",
"@google/genai": "^1.31.0",
"@google/generative-ai": "^0.24.1",
"astro": "^5.16.4",
"gray-matter": "^4.0.3",
"marked": "^17.0.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.5",
"turndown": "^7.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"@types/sanitize-html": "^2.16.0",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.0.15",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}