-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.54 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.54 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
{
"name": "meme-driven.dev",
"version": "latest",
"description": "A novel (and fun) approach to modern software development",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"prepare": "husky",
"astro": "astro",
"lint:check": "biome check",
"lint": "biome check --fix"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "https://github.com/setchy/meme-driven.dev"
},
"keywords": [
"meme",
"meme-driven",
"mdd",
"development",
"methodology",
"website",
"astro"
],
"author": {
"name": "Adam Setch",
"url": "https://github.com/setchy"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/setchy/meme-driven.dev/issues"
},
"homepage": "https://meme-driven.dev/",
"dependencies": {
"@iconify-json/mdi": "1.2.3",
"@octokit/openapi-types": "27.0.0",
"@tailwindcss/vite": "4.2.1",
"astro": "6.0.2",
"astro-icon": "1.1.5",
"date-fns": "4.1.0",
"marked": "17.0.4",
"octokit": "5.0.5",
"sharp": "0.34.5",
"tailwind-merge": "3.5.0",
"tailwindcss": "4.2.1",
"tailwindcss-motion": "1.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"husky": "9.1.7"
},
"packageManager": "pnpm@10.31.0",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"sharp"
]
},
"lint-staged": {
"*.{js,ts,cjs,mjs,astro}": "biome check --fix"
}
}