-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "4Byte.dev",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "pnpm generate:og && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"check": "astro check",
"generate:og": "node scripts/generate-og.mjs",
"generate:data": "node scripts/update-data.mjs",
"check:slugs": "node scripts/check-slugs.mjs"
},
"dependencies": {
"@astrojs/cloudflare": "^13.1.7",
"@astrojs/mdx": "^5.0.2",
"@astrojs/partytown": "^2.1.5",
"@astrojs/react": "^5.0.2",
"@astrojs/sitemap": "^3.7.1",
"@resvg/resvg-js": "^2.6.2",
"astro": "^6.0.5",
"astro-icon": "^1.1.5",
"d3": "^7.9.0",
"gray-matter": "^4.0.3",
"jose": "^6.2.2",
"katex": "^0.16.40",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"satori": "^0.25.0",
"slugify": "^1.6.8",
"three": "^0.183.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@eslint/js": "^10.0.1",
"@types/d3": "^7.4.3",
"@types/three": "^0.183.1",
"@unocss/astro": "^66.6.6",
"@unocss/preset-typography": "^66.6.7",
"@unocss/reset": "^66.6.6",
"astro-eslint-parser": "^1.3.0",
"eslint": "^10.0.3",
"eslint-plugin-astro": "^1.6.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.34.5",
"unocss": "^66.6.6",
"wrangler": "^4.80.0"
},
"lint-staged": {
"*.{js,ts,astro,json,md,mdx}": [
"prettier --write",
"eslint --fix"
]
}
}