-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.22 KB
/
package.json
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
88
89
90
{
"name": "docula",
"version": "0.9.4",
"description": "Beautiful Website for Your Projects",
"type": "module",
"main": "./dist/docula.js",
"module": "./dist/docula.js",
"types": "./dist/docula.d.ts",
"exports": {
".": {
"import": "./dist/docula.js"
}
},
"repository": "https://github.com/jaredwray/docula.git",
"author": "Jared Wray <[email protected]>",
"engines": {
"node": ">=20"
},
"license": "MIT",
"keywords": [
"static-site-generator",
"static-site",
"open source",
"ssg",
"documentation",
"website",
"templates",
"generator",
"framework",
"docula",
"writer",
"html",
"markdown",
"handlebars"
],
"scripts": {
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml ./site/README.md ./site/dist",
"build": "rimraf ./dist && tsup src/docula.ts --format esm --dts --clean",
"build-site": "rimraf ./site/README.md && node bin/docula.mjs build -s ./site -o ./site/dist",
"serve-mega": "rimraf ./test/fixtures/mega-page-site/dist && node bin/docula.mjs serve -s ./test/fixtures/mega-page-site",
"test": "xo --fix && vitest run --coverage",
"serve": "rimraf ./site/README.md && node bin/docula.mjs serve -s ./site -o ./site/dist",
"prepare": "npm run build"
},
"bin": {
"docula": "./bin/docula.mjs"
},
"dependencies": {
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"ecto": "^4.1.2",
"express": "^4.21.1",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"he": "^1.2.0",
"update-notifier": "^7.3.1",
"writr": "^4.1.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/he": "^1.2.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.6",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^2.1.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3",
"webpack": "^5.95.0",
"xo": "^0.59.3"
},
"xo": {
"ignores": [
"docula.config.*",
"vitest.config.*",
"bin/docula.js",
"docula.d.ts"
],
"rules": {
"n/file-extension-in-import": "off"
}
},
"files": [
"dist",
"init",
"template",
"bin"
]
}