-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "my-blog",
"version": "1.0.0",
"author": {
"name": "Mostafa Rahmati",
"url": "https://github.com/MR-Mostafa"
},
"type": "module",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"check": "astro check",
"clean": "rm -rf .astro .vercel dist",
"dev": "yarn clean && yarn update:theme && astro dev",
"dev:check": "astro check --watch & astro dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,astro}\" --cache --cache-location \"./node_modules/.cache/.prettier-cache\" --color",
"lint": "eslint --fix \"**/*.{js,ts,jsx,tsx,astro}\" --cache --cache-location \"./node_modules/.cache/.eslint-cache\" --color",
"new": "astro-pure new",
"preview": "astro preview",
"pure": "astro-pure",
"sync": "astro sync",
"update:theme": " yarn add ./packages/pure",
"yijiansilian": "bun lint && bun sync && bun check && bun format"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^9.0.0",
"@astrojs/rss": "^4.0.10",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/vercel": "^8.0.1",
"@playform/compress": "^0.1.6",
"@tailwindcss/typography": "^0.5.15",
"@waline/client": "^3.4.2",
"astro": "^5.1.1",
"astro-pure": "./packages/pure",
"katex": "^0.16.19",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@shikijs/transformers": "^1.26.1",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"rollup-plugin-visualizer": "^5.13.1",
"shiki": "^1.26.1",
"tailwind-merge": "^2.6.0",
"typescript-eslint": "^8.19.0"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20.18",
"yarn": "1.22.22"
}
}