-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.82 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.82 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
{
"name": "astro-base",
"description": "Minimal Astro starter for new projects with ESLint Prettier, sitemap and RSS.",
"type": "module",
"version": "1.2.0",
"scripts": {
"clean": "rm -rf node_modules .astro dist",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build; prettier --write \"dist/**/*.{js,html,css}\"",
"preview": "astro preview",
"lint": "pnpm run lint:check",
"lint:check": "pnpm run lint:prettier:check && pnpm run lint:eslint:check",
"lint:fix": "pnpm run lint:prettier:fix && pnpm run lint:eslint:fix",
"lint:prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,md,astro}\"",
"lint:prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,md,astro}\"",
"lint:eslint:check": "eslint \"src/**/*.{js,ts,jsx,tsx,md,astro}\"",
"lint:eslint:fix": "eslint --fix \"src/**/*.{js,ts,jsx,tsx,md,astro}\"",
"refresh": "pnpm dlx @astrojs/upgrade; pnpm up -L"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"@astrojs/check": "^0.9.8",
"@eslint/markdown": "^8.0.1",
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/logos": "^1.2.11",
"@types/node": "^25.6.0",
"@unocss/astro": "^66.6.8",
"@unocss/eslint-config": "^66.6.8",
"eslint": "^10.2.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^16.4.0",
"prettier": "^3.8.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"unocss": "^66.6.8"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}