-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 888 Bytes
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
{
"name": "webberzone-code-library",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.22.0",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"test": "node --test tests/unit/*.test.ts",
"verify:build": "node scripts/verify-build.ts",
"test:e2e": "playwright test"
},
"dependencies": {
"@astrojs/markdown-remark": "7.2.4",
"@astrojs/sitemap": "3.7.3",
"@fontsource/fira-code": "5.3.0",
"@fontsource/league-spartan": "5.3.0",
"@fontsource/plus-jakarta-sans": "5.3.0",
"astro": "7.2.4",
"fflate": "0.8.2"
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@playwright/test": "1.58.2",
"@types/node": "24.10.1",
"parse5": "7.3.0",
"typescript": "5.9.3"
}
}