forked from boundless-xyz/boundless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.71 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.71 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
{
"name": "documentation-site",
"version": "0.0.0",
"type": "module",
"scripts": {
"prebuild": "run-p generate-link-previews generate-smart-contracts-docs",
"build": "vocs build && bun ./scripts/reindex.ts",
"dev": "vocs dev",
"check-links": "bun ./scripts/check-links.ts",
"check-markdown": "remark . --quiet",
"check": "run-p check-markdown check-links",
"ci": "bun run build && bun run check",
"format-markdown": "remark . --output --use sort-definitions --use remark-lint-match-punctuation --use remark-lint-no-url-trailing-slash",
"generate-link-previews": "bun scripts/generate-link-previews.ts",
"generate-smart-contracts-docs": "cd .. && rm -rf documentation/site/pages/tmp && forge doc --build --out documentation/site/pages/tmp && cd documentation && bun ./scripts/process-forge-docs.ts && rm -rf site/pages/tmp",
"preview": "vocs preview"
},
"dependencies": {
"@risc0/ui": "0.0.351",
"markdown-link-check": "3.13.7",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-inline-links": "7.0.0",
"remark-lint-heading-capitalization": "1.3.0",
"remark-lint-heading-case": "1.0.0",
"remark-lint-match-punctuation": "0.2.1",
"remark-lint-no-url-trailing-slash": "3.0.1",
"remark-math": "6.0.0",
"remark-preset-lint-consistent": "6.0.1",
"remark-preset-lint-markdown-style-guide": "6.0.1",
"remark-preset-lint-recommended": "7.0.1",
"remark-remove-url-trailing-slash": "2.0.0",
"remark-sort-definitions": "2.0.0",
"remark-toc": "9.0.0",
"remark-wiki-link": "2.0.1",
"tailwindcss": "^4.1.8",
"vite-plugin-biome": "1.0.12",
"vite-plugin-sitemap": "0.7.1",
"vocs": "1.0.12"
},
"packageManager": "bun@1.2.15"
}