-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.74 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": "eleventy-plugin-techdoc",
"version": "0.0.0-dev",
"description": "Minimal structural Eleventy theme for tech documentation - no colors, no styling, just structure",
"type": "module",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"bin": {
"eleventy-plugin-techdoc": "./bin/init.js"
},
"scripts": {
"build": "npm pack --dry-run",
"test": "playwright test",
"lint": "eslint .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"clean": "rm -rf coverage *.tgz lcov.info coverage-summary.json"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"eleventy-theme",
"11ty",
"theme",
"documentation",
"tech-docs",
"static-site",
"docs",
"blog"
],
"author": "Christian Findlay <christian@melbournedeveloper.com>",
"license": "MIT",
"homepage": "https://github.com/Nimblesite/eleventy-plugin-techdoc#readme",
"bugs": {
"url": "https://github.com/Nimblesite/eleventy-plugin-techdoc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nimblesite/eleventy-plugin-techdoc.git"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@11ty/eleventy": "^3.1.2"
},
"dependencies": {
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@inquirer/prompts": "^8.5.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.40.0",
"c8": "^11.0.0",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3"
},
"files": [
"lib/",
"templates/",
"assets/",
"bin/"
]
}