-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.22 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
{
"name": "miguelpimentel-do",
"version": "1.0.0",
"description": "Latest version of my personal web site using the Eleventy site generator.",
"type": "module",
"scripts": {
"build": "rimraf ./_site/ && cross-env NODE_ENV=production npx @11ty/eleventy",
"build:nocolor": "cross-env NODE_DISABLE_COLORS=1 npx @11ty/eleventy",
"build:ghpages": "npx @11ty/eleventy --pathprefix=/personal-site/",
"clean": "rimraf ./_site/",
"dev": "cross-env NODE_ENV=development npx @11ty/eleventy --serve --quiet",
"dev:ghpages": "npx @11ty/eleventy --pathprefix=/personal-site/ --serve --quiet",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"debug:start": "cross-env DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "cross-env DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"11ty",
"eleventy",
"blog"
],
"repository": {
"type": "git",
"url": "git://github.com/semanticdata/personal-site.git"
},
"author": {
"name": "Miguel Pimentel",
"email": "database@omg.lol",
"url": "https://miguelpimentel.do/"
},
"license": "MIT",
"packageManager": "pnpm@10.26.2",
"bugs": {
"url": "https://github.com/semanticdata/personal-site/issues"
},
"homepage": "https://github.com/semanticdata/personal-site#readme",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@11ty/font-awesome": "^1.0.1",
"@11ty/is-land": "^5.0.1",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@zachleat/heading-anchors": "^1.0.5",
"@zachleat/snow-fall": "^1.0.3",
"cross-env": "10.1.0",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"luxon": "^3.7.2",
"markdown-it-footnote": "^4.0.0",
"markdown-it-obsidian-callouts": "^0.3.3",
"prismjs": "^1.30.0",
"rimraf": "^6.1.2",
"zod": "^4.2.1",
"zod-validation-error": "^5.0.0"
}
}