-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.79 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev --open",
"build": "xo && astro build",
"preview": "astro preview",
"test": "xo && astro build"
},
"devDependencies": {
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@astropub/md": "^1.0.0",
"@fontsource/inter": "^5.2.8",
"@iconify-json/tabler": "^1.2.33",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"@typescript-eslint/parser": "^8.58.1",
"astro": "^6.1.5",
"astro-iconify": "^1.3.1",
"astro-seo": "^1.1.0",
"eslint-plugin-astro": "^1.7.0",
"ky": "^1.14.3",
"limax": "^4.2.3",
"markdown-it": "^14.1.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-custom-header-id": "^1.0.0",
"remark-github-blockquote-alert": "^2.1.0",
"sanitize-html": "^2.17.2",
"satori": "^0.26.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"xo": "^0.60.0"
},
"xo": {
"envs": [
"es2021",
"node",
"browser"
],
"globals": [
"Astro",
"Fragment"
],
"extensions": [
"astro"
],
"ignores": [
"source/content.config.ts"
],
"overrides": [
{
"files": [
"**/*.astro"
],
"parser": "astro-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"extraFileExtensions": [
".astro"
],
"rules": {
"indent": "off"
}
}
],
"rules": {
"unicorn/filename-case": "off",
"unicorn/text-encoding-identifier-case": "off",
"n/file-extension-in-import": "off",
"operator-linebreak": "off",
"jsx-quotes": [
"error",
"prefer-double"
],
"unicorn/prevent-abbreviations": "off"
}
}
}