-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 777 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
{
"name": "site",
"type": "module",
"version": "0.0.1",
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "cross-env ASTRO_TELEMETRY_DISABLED=1 astro dev",
"build": "cross-env ASTRO_TELEMETRY_DISABLED=1 astro build",
"preview": "cross-env ASTRO_TELEMETRY_DISABLED=1 astro preview",
"check": "cross-env ASTRO_TELEMETRY_DISABLED=1 astro check",
"lint": "eslint src/scripts/**/*.ts",
"astro": "cross-env ASTRO_TELEMETRY_DISABLED=1 astro"
},
"dependencies": {
"@astrojs/vercel": "^11.0.0",
"astro": "^7.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"cross-env": "10.1.0",
"eslint": "^10.4.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
}
}