-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 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
{
"name": "@litodocs/cli",
"version": "1.4.1",
"description": "Beautiful documentation sites from Markdown. Fast, simple, and open-source.",
"type": "module",
"bin": {
"lito": "./bin/cli.js"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lito-docs/cli.git"
},
"bugs": {
"url": "https://github.com/Lito-docs/cli/issues"
},
"homepage": "https://github.com/Lito-docs/cli#readme",
"keywords": [
"documentation",
"docs",
"markdown",
"mdx",
"astro",
"static-site-generator",
"documentation-generator",
"lito",
"open-source"
],
"author": "Lito-docs",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@astrojs/mdx": "^3.1.0",
"@clack/prompts": "^0.11.0",
"astro": "^4.16.0",
"chokidar": "^4.0.0",
"commander": "^12.1.0",
"execa": "^9.0.0",
"fs-extra": "^11.2.0",
"picocolors": "^1.1.1"
}
}