-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.33 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.33 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:rss": "node scripts/rss.mjs",
"generate:knowledge-map": "tsx scripts/generateKnowledgeMap.ts",
"prebuild": "pnpm run generate:rss && pnpm run generate:knowledge-map",
"postbuild": "next-sitemap",
"generate-embeddings": "tsx scripts/generateEmbeddings.ts",
"analyze-vector-db": "tsx scripts/analyzeVectorDB.ts",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@floating-ui/react": "^0.27.16",
"@mozilla/readability": "^0.6.0",
"@neondatabase/serverless": "^0.10.4",
"@thi.ng/pixel": "^7.5.21",
"@thi.ng/pixel-dither": "^1.1.189",
"@types/node": "18.11.9",
"@types/react": "^18.2.48",
"@types/react-dom": "18.0.9",
"@vercel/analytics": "^0.1.11",
"@vercel/postgres": "^0.10.0",
"@vercel/speed-insights": "^1.0.2",
"@xenova/transformers": "^2.6.2",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"dotenv": "^16.4.5",
"eventsource-parser": "^1.0.0",
"gray-matter": "^4.0.3",
"image-size": "^2.0.2",
"install": "^0.13.0",
"jsdom": "^27.0.1",
"katex": "^0.16.22",
"kysely": "^0.24.2",
"kysely-planetscale": "^1.3.0",
"markdown-to-jsx": "^7.1.7",
"marked": "^5.1.2",
"ml-kmeans": "^6.0.0",
"next": "16.0.10",
"next-connect": "^1.0.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"openai": "^4.73.1",
"os": "^0.1.2",
"path": "^0.12.7",
"pg": "^8.11.3",
"pgvector": "^0.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^16.1.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"swr": "^2.3.6",
"three": "^0.180.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"umap-js": "^1.4.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uuid": "^13.0.0",
"voyageai": "^0.0.1-5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-zoom": "^3.0.8",
"@types/jsdom": "^21.1.1",
"@types/marked": "^5.0.1",
"@types/pg": "^8.15.5",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/three": "^0.180.0",
"@types/unist": "^3.0.3",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.22",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"eslint": "^9.18.0",
"eslint-config-next": "^15.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.5",
"ora": "^9.0.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"js-yaml@<3.14.2": "3.14.2",
"js-yaml@>=4.0.0 <4.1.1": "4.1.1",
"glob@>=10.0.0 <10.5.0": "10.5.0",
"glob@>=11.0.0 <11.1.0": "11.1.0",
"qs": ">=6.13.0",
"mdast-util-to-hast": ">=13.2.1"
}
}
}