-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.47 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.47 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
99
100
101
102
103
104
105
106
{
"name": "tanfolio",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"scripts": {
"dev": "vite --port 3000",
"start": "vite --port 3000",
"prebuild": "pnpm run links:extract && pnpm run sitemap:generate",
"links:extract": "tsx scripts/extract-note-links.ts",
"build": "tsc && vite build",
"postbuild": "node -e \"require('fs').copyFileSync('dist/index.html', 'dist/404.html')\" && pnpm run sitemap:copy",
"sitemap:generate": "tsx scripts/generate-sitemap.ts",
"sitemap:copy": "node -e \"require('fs').existsSync('public/sitemap.xml') && require('fs').copyFileSync('public/sitemap.xml', 'dist/sitemap.xml')\"",
"serve": "vite preview",
"test": "vitest run",
"deploy": "gh-pages -d dist --dotfiles",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@docsearch/css": "3",
"@docsearch/react": "3",
"@langchain/langgraph-sdk": "^0.0.74",
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.8",
"@radix-ui/react-select": "^2.2.4",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-router": "^1.144.0",
"@tanstack/react-router-devtools": "^1.144.0",
"@tanstack/router-plugin": "^1.145.2",
"@types/mdx": "^2.0.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.4",
"gsap": "^3.13.0",
"jstat": "^1.9.6",
"lucide-react": "^0.525.0",
"motion": "^12.23.26",
"plotly.js-dist-min": "^3.1.0",
"postcss": "^8.5.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-force-graph-2d": "^1.29.0",
"react-markdown": "^9.0.3",
"react-plotly.js": "^2.6.0",
"rehype-pretty-code": "^0.14.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0",
"seedrandom": "^3.0.5",
"shiki": "^3.7.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"three": "^0.179.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/mdast": "^4.0.4",
"@types/node": "^22.18.7",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.179.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"gh-pages": "^6.3.0",
"github-slugger": "^2.0.0",
"glob": "^13.0.0",
"jsdom": "^26.0.0",
"mdast-util-to-string": "^4.0.0",
"prettier": "^3.4.2",
"rehype-slug": "^6.0.0",
"tsx": "^4.20.6",
"tw-animate-css": "^1.3.4",
"typescript": "^5.7.2",
"unist-util-visit": "^5.0.0",
"vite": "^7.3.1",
"vitest": "^3.2.4",
"web-vitals": "^4.2.4"
},
"overrides": {
"@tanstack/react-router": "^1.121.2"
}
}