-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.59 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.59 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@docmd/monorepo",
"version": "0.6.9",
"private": true,
"description": "The minimalist, zero-config documentation generator monorepo.",
"scripts": {
"verify": "node scripts/verify.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "pnpm -r run build",
"dev": "pnpm --filter @docmd/playground dev",
"stop": "node packages/core/dist/bin/docmd.js stop >/dev/null 2>&1 || true",
"playground:add": "pnpm --filter @docmd/playground exec docmd add",
"playground:remove": "pnpm --filter @docmd/playground exec docmd remove",
"unlink:global": "npm uninstall -g @docmd/core @docmd/monorepo docmd docmd-live -s >/dev/null 2>&1; pnpm uninstall -g @docmd/core @docmd/monorepo docmd docmd-live -s >/dev/null 2>&1; rm -f $(which docmd 2>/dev/null) $(which docmd-live 2>/dev/null);",
"clean": "rm -rf node_modules packages/*/node_modules packages/plugins/*/node_modules packages/*/dist packages/plugins/*/dist packages/*/public packages/plugins/*/public packages/*/site packages/plugins/*/site *.tsbuildinfo temp-* >/dev/null 2>&1;",
"reset": "node scripts/status.js start:reset && pnpm -s stop && pnpm -s unlink:global && pnpm -s clean && node scripts/status.js reset",
"onboard": "node scripts/onboard.js",
"bump": "node scripts/bump.js",
"prep": "pnpm reset && pnpm verify"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"chalk": "4.1.2",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"prettier": "^3.8.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"flatted": ">=3.4.2",
"picomatch": ">=2.3.2",
"brace-expansion": ">=2.0.3"
}
},
"workspaces": [
"packages/*",
"packages/plugins/*"
],
"keywords": [
"docmd",
"markdown",
"minimalist",
"zero-config",
"site-generator",
"static-site-generator",
"documentation",
"typescript",
"javascript",
"nodejs",
"html",
"browser",
"website",
"generator",
"parser",
"hosted",
"cli",
"ssg",
"docs"
],
"author": {
"name": "Ghazi",
"url": "https://mgks.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docmd-io/docmd.git"
},
"bugs": {
"url": "https://github.com/docmd-io/docmd/issues"
},
"homepage": "https://docmd.io",
"funding": "https://github.com/sponsors/mgks",
"license": "MIT"
}