-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.03 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
{
"name": "@rmariuzzo/mariuzzo.com",
"version": "0.0.0",
"description": "The mariuzzo.com web site.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mariuzzo/mariuzzo.github.com.git"
},
"author": "Rubens Mariuzzo <rubens@mariuzzo.com>",
"license": "SEE LICENSE IN ./LICENSE",
"bugs": {
"url": "https://github.com/mariuzzo/mariuzzo.github.com/issues"
},
"homepage": "https://github.com/mariuzzo/mariuzzo.github.com#readme",
"scripts": {
"dev": "vite dev",
"start": "vite dev",
"build": "npm run generate-og && vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"generate-og": "tsx ./scripts/generate-og-images.ts",
"deploy": "npm run build && gh-pages -d build -b gh-pages",
"prepare": "husky",
"new-post": "tsx ./scripts/new-post.ts"
},
"dependencies": {
"@fontsource/source-code-pro": "^5.2.7",
"@fontsource/source-sans-pro": "^5.2.5",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"normalize.css": "^8.0.1",
"prismjs": "^1.30.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.65.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.6.2",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"inquirer": "^13.4.2",
"lint-staged": "^17.0.2",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.1",
"rehype-prism-plus": "^2.0.2",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"satori": "^0.26.0",
"satori-html": "^0.3.2",
"sharp": "^0.34.5",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"unified": "^11.0.5",
"untoken": "^0.0.2",
"vite": "^8.0.16",
"yargs-parser": "^22.0.0"
},
"overrides": {
"cookie": "^1.0.0"
},
"lint-staged": {
"*.{ts,js,svelte,md}": "prettier --write"
}
}