-
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) · 2.03 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.03 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": "mlsystems-dev",
"type": "module",
"version": "0.1.0",
"private": true,
"description": "An open archive for the engineers building modern ML systems.",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && pagefind --site dist --output-subdir _pagefind",
"index:dev": "astro build && pagefind --site dist --output-path public/_pagefind",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify": "npm run check && npm run lint && npm run format:check",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx,jsx,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css,html,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.0",
"@astrojs/react": "^4.1.0",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.0",
"@fontsource/instrument-serif": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@resvg/resvg-js": "^2.6.2",
"astro": "^5.1.0",
"katex": "^0.17.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"satori": "^0.26.0",
"shiki": "^1.24.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"astro-eslint-parser": "^1.4.0",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"pagefind": "^1.5.2",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.59.4"
}
}