-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.52 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.52 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
{
"name": "miguelvf.com",
"version": "1.0.1",
"private": false,
"author": {
"name": "Miguel Villa Floran",
"url": "https://github.com/kaweees"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start:dev": "astro dev --host",
"start": "astro dev --host",
"build": "astro check && astro build && jampack ./dist",
"preview": "astro preview --host",
"sync": "astro sync",
"astro": "astro",
"lint": "prettier . --check && eslint --report-unused-disable-directives --max-warnings 0",
"format": "prettier . --write --ignore-path .gitignore",
"taze": "npx taze major -I",
"taze:minor": "npx taze minor -w",
"test": "pnpm commitlint --edit && pnpm format && pnpm lint"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/rss": "^4.0.15",
"@resvg/resvg-js": "^2.6.2",
"@shikijs/transformers": "^3.23.0",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.17.3",
"clsx": "^2.1.1",
"framer-motion": "^12.34.3",
"fuse.js": "^7.1.0",
"github-slugger": "^2.0.0",
"i": "^0.3.7",
"katex": "^0.16.33",
"node-tikzjax": "^1.0.5",
"rehype-katex": "^7.0.1",
"remark-collapse": "^0.1.2",
"remark-math": "^6.0.0",
"remark-toc": "^9.0.0",
"satori": "^0.19.2",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"taze": "^19.9.2",
"typescript": "^5.9.3",
"typewriter-effect": "^2.22.0",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.0",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@divriots/jampack": "^0.34.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/github-slugger": "^2.0.0",
"@types/react": "^19.2.14",
"@typescript-eslint/parser": "^8.56.1",
"astro-eslint-parser": "^1.3.0",
"commitizen": "^4.3.1",
"commitlint": "^20.4.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.1.5",
"react-dom": "^19.1.5",
"tailwindcss": "^4.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,json,astro}": [
"prettier --write --plugin=prettier-plugin-astro"
]
}
}