-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "eleventy-satisfactory",
"version": "1.0.0",
"description": "My simplified opinionated eleventy theme, the focus is on content first, and less on other things.",
"type": "module",
"scripts": {
"build": "npx @11ty/eleventy",
"bench": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --watch --incremental",
"debug": "DEBUG=* npx @11ty/eleventy",
"pretest": "playwright install",
"test": "playwright test --headed",
"stop": "kill -9 $(lsof -t -i :8080)"
},
"repository": {
"type": "git",
"url": "https://github.com/mendhak/eleventy-satisfactory.git"
},
"author": {
"name": "mendhak",
"email": "mendhak@users.noreply.github.com",
"url": "https://code.mendhak.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mendhak/eleventy-satisfactory/issues"
},
"homepage": "https://code.mendhak.com/eleventy-satisfactory/",
"dependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"clean-css": "^5.3.3",
"dotenv": "^17.4.2",
"luxon": "^3.7.2",
"markdown-it": "^14.2.0",
"markdown-it-anchor": "^9.0.1",
"prism-themes": "^1.9.0",
"simpledotcss": "2.3.7",
"simplelightbox": "^2.14.3"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1"
}
}