-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.28 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
89
90
91
92
93
94
95
{
"name": "fuwari",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:indexnow": "astro build && node scripts/submit-indexnow-incremental.mjs",
"submit-indexnow": "node scripts/submit-indexnow.mjs",
"submit-indexnow-inc": "node scripts/submit-indexnow-incremental.mjs",
"submit-indexnow-force": "node scripts/submit-indexnow-incremental.mjs --force",
"indexnow-status": "node scripts/submit-indexnow-incremental.mjs --status",
"indexnow-clear": "node scripts/submit-indexnow-incremental.mjs --clear",
"preview": "astro preview",
"astro": "astro",
"type-check": "tsc --noEmit",
"new-post": "node scripts/new-post.js",
"format": "biome format --write ./src",
"lint": "biome check --write ./src",
"update-timestamp": "node scripts/update-post-timestamp.mjs",
"prepare": "node -e \"const fs=require('fs');const src='scripts/pre-commit';const dst='.git/hooks/pre-commit';if(fs.existsSync(src)&&fs.existsSync('.git')){fs.mkdirSync('.git/hooks',{recursive:true});fs.copyFileSync(src,dst);console.log('Git hook installed!')}\""
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.3.1",
"@astrojs/svelte": "7.0.12",
"@astrojs/tailwind": "^6.0.2",
"@expressive-code/core": "^0.41.3",
"@expressive-code/plugin-collapsible-sections": "^0.41.3",
"@expressive-code/plugin-line-numbers": "^0.41.3",
"@fancyapps/ui": "^6.0.5",
"@fontsource-variable/jetbrains-mono": "^5.2.5",
"@fontsource/roboto": "^5.2.5",
"@iconify-json/fa6-brands": "^1.2.5",
"@iconify-json/fa6-regular": "^1.2.3",
"@iconify-json/fa6-solid": "^1.2.3",
"@iconify-json/material-symbols": "^1.2.20",
"@iconify-json/simple-icons": "^1.2.42",
"@iconify/svelte": "^4.2.0",
"@react-three/fiber": "^9.5.0",
"@swup/astro": "^1.6.0",
"@tailwindcss/typography": "^0.5.16",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"astro": "5.7.9",
"astro-expressive-code": "^0.41.3",
"astro-icon": "^1.1.5",
"hastscript": "^9.0.1",
"katex": "^0.16.22",
"markdown-it": "^14.1.0",
"mdast-util-to-string": "^4.0.0",
"node-html-parser": "^7.0.1",
"overlayscrollbars": "^2.11.1",
"photoswipe": "^5.4.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-components": "^0.3.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-directive": "^3.0.1",
"remark-directive-rehype": "^0.4.2",
"remark-github-admonitions-to-directives": "^1.0.5",
"remark-math": "^6.0.0",
"remark-sectionize": "^2.1.0",
"sanitize-html": "^2.16.0",
"sharp": "^0.34.1",
"sql.js": "^1.13.0",
"stylus": "^0.64.0",
"svelte": "^5.28.2",
"tailwindcss": "^3.4.17",
"three": "^0.182.0",
"typescript": "^5.8.3",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@biomejs/biome": "1.9.4",
"@rollup/plugin-yaml": "^4.1.2",
"@types/hast": "3.0.4",
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/sanitize-html": "^2.15.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"rehype": "^13.0.2"
},
"packageManager": "pnpm@9.15.9"
}