-
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.45 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.45 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": "mlsystems-dev",
"type": "module",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"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 .",
"test": "vitest run",
"verify": "npm run check && npm run lint && npm run format:check && npm test",
"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.9",
"@astrojs/mdx": "^7.0.3",
"@astrojs/react": "^6.0.1",
"@astrojs/rss": "^4.0.19",
"@astrojs/sitemap": "^3.7.3",
"@blocknote/code-block": "^0.51.4",
"@blocknote/core": "^0.51.4",
"@blocknote/mantine": "^0.51.4",
"@blocknote/react": "^0.51.4",
"@fontsource/hanken-grotesk": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/playfair-display": "^5.2.8",
"@fontsource/source-serif-4": "^5.2.9",
"@resvg/resvg-js": "^2.6.2",
"astro": "^7.1.1",
"jszip": "^3.10.1",
"katex": "^0.17.0",
"mermaid": "^11.16.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",
"sucrase": "^3.35.1",
"zod": "^4.4.3"
},
"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",
"vitest": "^4.1.10"
}
}