-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "goude-site",
"type": "module",
"version": "2.6.1",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"check": "astro check",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.astro --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "lint-staged && astro check",
"prepush": "npm run lint && npm run typecheck && npm run build",
"prepare": "husky",
"test": "vitest run"
},
"lint-staged": {
"*.{ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json,yaml,yml}": "prettier --write"
},
"overrides": {
"yaml-language-server": {
"yaml": ">=2.8.3"
}
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.3",
"marked": "^17.0.3",
"shiki": "^3.22.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/language-server": "^2.16.3",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/youtube": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"astro-eslint-parser": "^1.3.0",
"eslint": "^10.0.1",
"eslint-plugin-astro": "^1.6.0",
"fast-xml-parser": "^5.3.7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"postcss-custom-properties": "^15.0.1",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.1.2"
}
}