-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "@devices-lab/user-doc-base",
"version": "0.0.0",
"type": "module",
"description": "A markdown documentation template for device documentation that adheres to the Devices Lab 'official' styles and layouts",
"main": ".eleventy.js",
"repository": "https://github.com/devices-lab/user-doc-base.git",
"author": "Dr John Vidler <j.vidler@lancaster.ac.uk>",
"license": "MIT",
"private": false,
"dependencies": {
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-bundle": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"eleventy-plugin-toc": "^1.1.5",
"glob": "^13.0.1",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0"
},
"peerDependencies": {
"@johnvidler/11ty-doc-toc": "https://github.com/JohnVidler/11ty-doc-toc.git#main",
"@11ty/eleventy": "^3.1.2",
"@types/markdown-it": "^14.1.2",
"autoprefixer": "^10.4.17",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"postcss": "^8.4.33",
"postcss-load-config": "^4.0.2",
"tailwindcss": "^3.4.1"
},
"peerDependenciesMeta": {
"markdown-it": {
"optional": false
},
"markdown-it-anchor": {
"optional": false
},
"@types/markdown-it": {
"optional": false
},
"autoprefixer": {
"optional": false
},
"postcss": {
"optional": false
},
"postcss-load-config": {
"optional": false
},
"tailwindcss": {
"optional": false
}
},
"scripts": {
"dev:11ty": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy"
}
}