-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.98 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
{
"name": "automem-website",
"type": "module",
"version": "0.1.0",
"description": "AutoMem.AI - Intelligent Memory Service for AI Agents",
"license": "MIT",
"scripts": {
"dev": "astro dev --host 0.0.0.0",
"start": "astro dev",
"build": "rm -rf dist .astro node_modules/.astro .wrangler/deploy && node scripts/build-pages.mjs",
"preview": "astro preview",
"sync-benchmarks": "node scripts/sync-benchmarks.mjs",
"test": "node --test tests/*.test.mjs",
"test:benchmarks": "node --test tests/benchmarks-lib.test.mjs tests/sync-benchmarks.test.mjs",
"astro": "astro",
"check-links": "node scripts/check-links.js",
"cms:seed:validate": "mkdir -p data && emdash seed seed/seed.json --database data/emdash.db --validate",
"cms:seed:apply": "mkdir -p data && emdash seed seed/seed.json --database data/emdash.db --on-conflict=update",
"cms:migrate-blog": "node scripts/migrate-blog-to-emdash.mjs",
"postinstall": "patch-package"
},
"dependencies": {
"@astrojs/cloudflare": "^13.6.1",
"@astrojs/mdx": "^6.0.2",
"@astrojs/react": "^5.0.7",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/starlight": "^0.39.3",
"@emdash-cms/cloudflare": "^0.27.0",
"@libsql/client": "^0.17.2",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.96.1",
"@tanstack/react-router": "^1.168.10",
"@tiptap/extension-collaboration": "3.27.1",
"@tiptap/y-tiptap": "3.0.6",
"astro": "^6.4.4",
"astro-mermaid": "^2.0.1",
"emdash": "^0.27.0",
"kysely": "^0.29.2",
"mermaid": "^11.14.0",
"patch-package": "^8.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260401.1",
"@tailwindcss/typography": "^0.5.19",
"baseline-browser-mapping": "^2.10.13",
"esbuild": "^0.28.0",
"js-yaml": "^4.1.1",
"linkinator": "^7.6.1",
"smol-toml": "^1.6.1",
"wrangler": "^4.79.0"
}
}