-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "homepage",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@10.8.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint --ext .ts,.tsx,.js,.jsx,.astro ."
},
"dependencies": {
"@date-fns/tz": "^1.1.2",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@retorquere/bibtex-parser": "^9.0.17",
"@rollup/pluginutils": "^5.1.3",
"@std/yaml": "npm:@jsr/std__yaml@^1.0.5",
"astro": "^5.16.9",
"date-fns": "^4.1.0",
"md4w": "^0.2.6",
"vite": "^7.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.0.0",
"@iconify-json/mdi": "^1.1.54",
"@unocss/reset": "^0.55.7",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"unocss": "^66.5.12",
"vite-plugin-inspect": "^11.3.3"
},
"eslintConfig": {
"extends": [
"@antfu",
"plugin:astro/recommended"
],
"rules": {
"semi": "off",
"quotes": "off",
"@typescript-eslint/semi": [
"warn",
"always"
],
"@typescript-eslint/quotes": [
"warn",
"double"
]
}
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}