-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.43 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": "commitpress",
"version": "1.0.0",
"description": "The simplest blog system ever built. No database, no CMS, no complexity. Just write in Markdown, commit, and publish with CommitPress.",
"private": false,
"author": {
"name": "Muzaffar Hussain",
"url": "https://github.com/muzaffar640"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/muzaffar640/commitpress.git"
},
"bugs": {
"url": "https://github.com/muzaffar640/commitpress/issues"
},
"homepage": "https://github.com/muzaffar640/commitpress#readme",
"keywords": [
"blog",
"nextjs",
"mdx",
"database-free",
"git-based",
"static-site",
"markdown",
"typescript",
"tailwindcss",
"portfolio",
"blogging",
"blogging-system",
"blogging-platform",
"blogging-software",
"blogging-tool",
"blogging-service",
"blogging-platform",
"commitpress"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"cursor:setup": "echo '🤖 Cursor AI rules are ready! Open project in Cursor to start AI-powered blogging.'",
"cursor:help": "echo '📝 Create .mdx file, paste content, ask Cursor AI to format as blog post'",
"ai:demo": "echo '✨ Try: 1) Create new .mdx file 2) Paste any blog content 3) Ask Cursor to format it'",
"migrate:help": "echo '🔄 Migration: 1) Export from old platform 2) Paste content 3) Let AI format 4) Commit & push'"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.0",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.468.0",
"next": "15.0.4",
"next-mdx-remote": "^5.0.0",
"posthog-js": "^1.256.2",
"posthog-node": "^5.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reading-time": "^1.5.0",
"rehype-pretty-code": "^0.10.0",
"shiki": "^0.14.3",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8",
"eslint-config-next": "15.0.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}