-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) 路 2.96 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) 路 2.96 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "ametrine",
"type": "module",
"version": "1.0.0",
"scripts": {
"setup": "bun run scripts/setup.ts",
"dev": "astro dev",
"build": "astro build && bun run validate:build",
"build:unsafe": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"validate": "bun run validate:links",
"validate:links": "bun run scripts/validateLinks.ts",
"validate:build": "bun run scripts/validate-build.ts",
"lint": "oxlint src/ --ignore-pattern '**/*.astro'",
"lint:fix": "oxlint src/ --fix --ignore-pattern '**/*.astro'",
"lint:markdown": "bun run scripts/lint-markdown.ts",
"format": "oxfmt src/",
"format:check": "oxfmt src/ --check",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"verify": "bun run format:check && bun run lint && bun run lint:markdown && bun run test && bun run check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.6.0",
"@astrojs/tailwind": "^6.0.2",
"@nanostores/react": "^1.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-table": "^8.21.3",
"@types/marked": "^6.0.0",
"@xyflow/react": "^12.9.3",
"ansi_up": "^6.0.6",
"astro": "^5.18.0",
"astro-expressive-code": "^0.41.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"date-fns": "^4.1.0",
"fast-glob": "^3.3.3",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-to-html": "^9.0.5",
"jexl": "^2.3.0",
"js-yaml": "^4.1.1",
"lucide-react": "^0.548.0",
"marked": "^17.0.1",
"mdast-util-find-and-replace": "^3.0.2",
"mdast-util-to-hast": "^13.2.1",
"mdast-util-to-string": "^4.0.0",
"mermaid": "^11.12.1",
"nanostores": "^1.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-callouts": "^2.1.2",
"rehype-citation": "^2.3.1",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"remark-smartypants": "^3.0.2",
"rollup": "^4.59.0",
"satori": "^0.18.3",
"sharp": "^0.34.5",
"shiki": "^3.15.0",
"simple-git": "^3.30.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.18",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.5",
"@types/jexl": "^2.3.4",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/sharp": "^0.32.0",
"@vitest/ui": "^4.0.13",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"oxfmt": "^0.9.0",
"oxlint": "^1.30.0",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}