2024-06-14 02:11:26 +08:00
|
|
|
{
|
|
|
|
"name": "yufan.me",
|
|
|
|
"version": "3.0.0",
|
|
|
|
"private": true,
|
2024-07-31 00:17:56 +08:00
|
|
|
"description": "The personal blog for Yufan Sheng",
|
2024-06-14 02:11:26 +08:00
|
|
|
"keywords": [
|
|
|
|
"blog",
|
|
|
|
"astro",
|
|
|
|
"yufan",
|
|
|
|
"ameho",
|
|
|
|
"syhily"
|
|
|
|
],
|
|
|
|
"homepage": "https://yufan.me",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/syhily/yufan.me/issues",
|
|
|
|
"email": "syhily@gmail.com"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/syhily/yufan.me.git"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"author": {
|
|
|
|
"name": "Yufan Sheng",
|
|
|
|
"email": "syhily@gmail.com",
|
|
|
|
"url": "https://yufan.me"
|
|
|
|
},
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"astro": "astro",
|
2024-08-15 19:31:33 +08:00
|
|
|
"build": "rimraf dist && rimraf .zeabur && astro check && astro build",
|
2024-06-14 02:11:26 +08:00
|
|
|
"dev": "astro dev",
|
2024-09-13 20:25:24 +08:00
|
|
|
"lint": "biome check --write . && prettier . --write",
|
2024-06-14 02:11:26 +08:00
|
|
|
"prepare": "npx husky",
|
|
|
|
"preview": "astro preview",
|
|
|
|
"start": "astro dev"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*": [
|
|
|
|
"biome check --no-errors-on-unmatched --files-ignore-unknown=true",
|
|
|
|
"prettier --write --ignore-unknown"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-10-15 17:09:33 +08:00
|
|
|
"@astrojs/mdx": "^3.1.8",
|
2024-10-16 10:44:06 +08:00
|
|
|
"@astrojs/rss": "^4.0.9",
|
2024-07-26 10:33:46 +08:00
|
|
|
"@zeabur/astro-adapter": "^1.0.6",
|
2024-10-16 10:44:06 +08:00
|
|
|
"astro": "^4.16.5",
|
2024-10-16 21:23:39 +08:00
|
|
|
"drizzle-orm": "^0.35.1",
|
2024-06-14 02:11:26 +08:00
|
|
|
"fuse.js": "^7.0.0",
|
|
|
|
"lodash": "^4.17.21",
|
2024-07-31 00:17:56 +08:00
|
|
|
"luxon": "^3.5.0",
|
2024-10-15 17:09:33 +08:00
|
|
|
"marked": "^14.1.3",
|
2024-09-24 09:53:01 +08:00
|
|
|
"pg": "^8.13.0",
|
2024-06-14 02:11:26 +08:00
|
|
|
"qrcode-svg": "^1.1.0",
|
|
|
|
"ultrahtml": "^1.5.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-15 17:09:33 +08:00
|
|
|
"@astrojs/check": "^0.9.4",
|
|
|
|
"@biomejs/biome": "^1.9.3",
|
|
|
|
"@napi-rs/canvas": "^0.1.58",
|
|
|
|
"@types/lodash": "^4.17.10",
|
2024-06-14 02:11:26 +08:00
|
|
|
"@types/luxon": "^3.4.2",
|
2024-10-15 17:09:33 +08:00
|
|
|
"@types/node": "^22.7.5",
|
2024-09-15 22:27:29 +08:00
|
|
|
"@types/pg": "^8.11.10",
|
2024-07-22 22:40:23 +08:00
|
|
|
"@types/qrcode-svg": "^1.1.5",
|
2024-08-15 19:31:33 +08:00
|
|
|
"@types/unist": "^3.0.3",
|
2024-06-14 02:11:26 +08:00
|
|
|
"aplayer": "^1.10.1",
|
2024-07-08 22:54:10 +08:00
|
|
|
"astro-uploader": "^1.1.3",
|
2024-06-14 02:11:26 +08:00
|
|
|
"bootstrap": "^5.3.3",
|
2024-07-16 15:04:55 +08:00
|
|
|
"prettier": "^3.3.3",
|
2024-07-18 10:30:56 +08:00
|
|
|
"prettier-plugin-astro": "^0.14.1",
|
2024-10-15 17:09:33 +08:00
|
|
|
"prettier-plugin-astro-organize-imports": "^0.4.10",
|
2024-09-24 09:53:01 +08:00
|
|
|
"prettier-plugin-organize-imports": "^4.1.0",
|
2024-09-26 17:07:00 +08:00
|
|
|
"rehype-autolink-headings": "^7.1.0",
|
2024-06-25 20:21:22 +08:00
|
|
|
"rehype-external-links": "^3.0.0",
|
2024-09-26 17:07:00 +08:00
|
|
|
"rehype-slug": "^6.0.0",
|
2024-06-14 02:11:26 +08:00
|
|
|
"resize-sensor": "^0.0.6",
|
2024-07-16 15:04:55 +08:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-15 19:31:33 +08:00
|
|
|
"sharp": "^0.33.5",
|
2024-10-15 17:09:33 +08:00
|
|
|
"typescript": "^5.6.3",
|
2024-06-21 04:17:36 +08:00
|
|
|
"unist-util-select": "^5.1.0"
|
2024-07-18 11:37:28 +08:00
|
|
|
},
|
2024-10-15 17:09:33 +08:00
|
|
|
"packageManager": "npm@10.9.0",
|
2024-07-18 11:37:28 +08:00
|
|
|
"engines": {
|
2024-10-15 17:09:33 +08:00
|
|
|
"node": "22.9.0"
|
2024-06-14 02:11:26 +08:00
|
|
|
}
|
|
|
|
}
|