-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.53 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.53 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
{
"name": "barodoc-monorepo",
"version": "0.0.0",
"private": true,
"description": "Documentation framework built with Astro and MDX",
"scripts": {
"dev": "pnpm --filter docs dev",
"dev:docs": "pnpm --filter docs dev",
"dev:fresh": "pnpm dev",
"build": "pnpm --filter docs build",
"build:packages": "pnpm --filter @barodoc/core --filter @barodoc/theme-docs --filter barodoc --filter create-barodoc --filter @barodoc/plugin-sitemap --filter @barodoc/plugin-search --filter @barodoc/plugin-analytics --filter @barodoc/plugin-openapi --filter @barodoc/plugin-rss --filter @barodoc/plugin-pwa --filter @barodoc/plugin-llms-txt --filter @barodoc/plugin-og-image --filter @barodoc/plugin-docsearch --filter @barodoc/plugin-raw-md build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "pnpm -r typecheck",
"barodoc": "tsx packages/barodoc/src/cli.ts",
"test:cli": "pnpm --filter barodoc build && node packages/barodoc/dist/cli.js",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build:packages && changeset publish"
},
"keywords": [
"documentation",
"astro",
"mdx",
"static-site"
],
"author": "",
"license": "MIT",
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"d3-array": "github:d3/d3-array#main",
"d3-shape": "^3.2.0"
}
}
}