forked from markhorn-dev/astro-nano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.27 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.27 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
{
"name": "astro-nano",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "bun run build && bun run copy:pagefind:dev && bun astro dev",
"dev:network": "astro dev --host",
"build": "astro build && bun pagefind --site dist",
"build:pagefind": "bun pagefind --site dist",
"copy:pagefind:dev": "bun shx cp -r dist/pagefind public/",
"preview": "astro preview",
"preview:network": "astro preview --host",
"astro": "astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/markdoc": "^0.11.5",
"@astrojs/mdx": "^2.3.1",
"@astrojs/react": "^3.6.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.0",
"@astrojs/svelte": "5.7.2",
"@astrojs/tailwind": "^5.1.5",
"@astrojs/upgrade": "^0.3.4",
"@ethercorps/svelte-h2j": "^4.0.0",
"@expressive-code/plugin-line-numbers": "^0.37.1",
"@fontsource/inter": "^5.2.5",
"@fontsource/lora": "^5.2.5",
"@fujocoded/expressive-code-caption": "^0.0.3",
"@fujocoded/expressive-code-output": "^0.0.1",
"@iconify-json/iconoir": "^1.2.7",
"@iconify-json/line-md": "^1.2.5",
"@keystatic/astro": "^5.0.6",
"@keystatic/core": "^0.5.46",
"@tailwindcss/typography": "^0.5.16",
"@types/lodash": "^4.17.16",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"astro": "^4.16.18",
"astro-beam": "^1.1.2",
"astro-expressive-code": "^0.37.1",
"astro-icon": "^1.1.5",
"astro-pagefind": "^1.8.3",
"clsx": "^2.1.1",
"css-tree": "^3.1.0",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^0.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"loadsh": "^0.0.4",
"lodash-es": "^4.17.21",
"markdoc": "^0.1.3",
"react": "^18.3.1",
"react-dom": "18.3.1",
"redaxios": "^0.5.1",
"satori": "^0.12.2",
"sharp": "^0.33.5",
"svelte": "4",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/bun": "^1.2.8",
"prettier": "3.3.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-astro-organize-imports": "0.4.10",
"prettier-plugin-tailwindcss": "0.6.8",
"shx": "^0.3.4"
}
}