-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
78 lines (78 loc) · 1.53 KB
/
package.json
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
{
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev --open",
"build": "xo && astro build",
"preview": "astro preview",
"test": "xo && astro build"
},
"devDependencies": {
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrolib/seo": "1.0.0-beta.5",
"@astropub/md": "^1.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/parser": "^8.12.2",
"astro": "^4.16.7",
"astro-iconify": "^1.2.0",
"eslint-plugin-astro": "^1.3.0",
"ky": "^1.7.2",
"limax": "^4.1.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-custom-header-id": "^1.0.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"xo": "^0.59.3"
},
"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": {
"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"
}
}
}