-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.15 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.15 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "docula",
"version": "1.14.0",
"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": {
"type": "git",
"url": "git+https://github.com/jaredwray/docula.git"
},
"author": "Jared Wray <me@jaredwray.com>",
"engines": {
"node": ">=20"
},
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist ./coverage ./node_modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml ./site/dist",
"build": "pnpm generate-init-file && tsdown",
"build:binary": "pnpm generate-init-file && pnpm generate-embedded-templates && tsdown --config tsdown.config.binary.ts && tsx scripts/build-sea.ts",
"generate-embedded-templates": "tsx scripts/generate-embedded-templates.ts",
"lint": "biome check --write --error-on-warnings",
"lint:ci": "biome check --error-on-warnings",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "pnpm lint:ci && vitest run --coverage",
"test:e2e": "pnpm build && playwright test",
"docula:help": "pnpm build && node bin/docula.js help",
"generate-init-file": "tsx scripts/generate-init-file.ts",
"website:build": "node bin/docula.js build -s ./site -o ./site/dist",
"website:dev": "pnpm build && node bin/docula.js dev -s ./site -p 3333",
"website:mapi": "pnpm build && node bin/docula.js dev -s ./test/fixtures/multi-api-site -p 3333",
"website:mega": "node bin/docula.js dev -s ./test/fixtures/mega-page-site",
"website:mega:custom": "node bin/docula.js serve -s ./test/fixtures/mega-custom-template --watch",
"website:singlepage": "node bin/docula.js dev -s ./test/fixtures/single-page-site --clean",
"website:nohome": "node bin/docula.js serve -s ./test/fixtures/mega-page-site-no-home-page --watch --clean",
"website:changelog": "node bin/docula.js serve -s ./test/fixtures/changelog-site --watch --clean",
"prepublishOnly": "pnpm build"
},
"keywords": [
"static-site-generator",
"static-site",
"open source",
"ssg",
"documentation",
"website",
"templates",
"generator",
"framework",
"docula",
"writer",
"html",
"markdown",
"handlebars"
],
"bin": {
"docula": "./bin/docula.js"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.53",
"@cacheable/net": "^2.0.7",
"ai": "^6.0.164",
"colorette": "^2.0.20",
"ecto": "^4.8.4",
"hashery": "^2.0.0",
"jiti": "^2.6.1",
"serve-handler": "^6.1.7",
"update-notifier": "^7.3.1",
"writr": "^6.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/serve-handler": "^6.1.4",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^4.1.4",
"dotenv": "^17.4.2",
"postject": "1.0.0-alpha.6",
"rimraf": "^6.1.3",
"tsdown": "^0.21.9",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"files": [
"dist",
"templates",
"bin"
]
}