-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 3.69 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
{
"name": "mashbean-blog-astro",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:fast": "FAST_BUILD=1 PUBLIC_ENABLE_WEB3=0 astro build",
"postbuild": "node scripts/postbuild-search.mjs",
"search:benchmark": "node scripts/benchmark-search-index.mjs",
"check:content-ids": "node scripts/check-content-ids.mjs",
"build:pagefind": "pagefind --site dist --glob \"**/*.html\"",
"preview": "astro preview",
"check": "astro check",
"check:covers": "node scripts/check-cover-sizes.mjs --max-kb 900",
"check:covers:warn": "node scripts/check-cover-sizes.mjs --max-kb 900 --warn-only",
"lint": "npm run check && npm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"migrate:posts": "node scripts/migrate-jekyll-posts.mjs",
"sign:posts": "node scripts/sign-blog-posts.mjs",
"sign:posts:check": "node scripts/sign-blog-posts.mjs --check",
"web3:build:ipfs": "node scripts/web3-build-ipfs-dist.mjs",
"web3:ipfs:publish": "node scripts/web3-publish-ipfs.mjs",
"web3:ipfs:publish:dry": "node scripts/web3-publish-ipfs.mjs --dry-run",
"web3:ipfs:publish:compact": "npm run web3:build:ipfs && npm run web3:ipfs:publish -- --dist dist-ipfs",
"web3:ipfs:publish:compact:dry": "npm run web3:build:ipfs && npm run web3:ipfs:publish:dry -- --dist dist-ipfs",
"web3:ipns:update": "node scripts/web3-update-ipns.mjs",
"web3:ipns:update:dry": "node scripts/web3-update-ipns.mjs --dry-run --cid bafybeigdyrztxci5jhj4s2fd3mhmrcoak6m6f6hke5u4smbmctf5bswdzu",
"web3:ens:contenthash": "node scripts/web3-update-ens-contenthash.mjs",
"web3:ens:contenthash:dry": "node scripts/web3-update-ens-contenthash.mjs --dry-run --skip-chain-check --ipns k51qzi5uqu5dl4-example",
"web3:ethlimo:check": "node scripts/web3-check-ethlimo.mjs",
"web3:ethlimo:check:dry": "node scripts/web3-check-ethlimo.mjs --dry-run",
"web3:healthcheck": "node scripts/web3-healthcheck.mjs",
"web3:rollback": "node scripts/web3-rollback-release.mjs",
"web3:rollback:dry": "node scripts/web3-rollback-release.mjs",
"images:batch:openai": "node scripts/batch-generate-images-openai.mjs",
"images:batch:openai:dry": "node scripts/batch-generate-images-openai.mjs --dry-run",
"cover:latest": "node scripts/generate-latest-cover-openai.mjs",
"diagrams:build": "node scripts/export-mermaid-diagrams.mjs",
"diagrams:build:blog": "node scripts/export-mermaid-diagrams.mjs --collection=blog",
"publish:post": "node scripts/publish-post.mjs",
"publish:post:fast": "node scripts/publish-post.mjs --skip-cover --skip-sign",
"publish:post:full": "node scripts/publish-post.mjs",
"meeting:summary:gdocs": "python3 scripts/meet_summary_to_gdocs.py",
"rag:build-corpus": "node scripts/build-rag-corpus.mjs",
"rag:build-workbench": "node scripts/build-rag-workbench.mjs",
"rag:build-gold-set": "node scripts/build-rag-gold-set.mjs",
"rag:build-gold-review": "node scripts/build-rag-gold-review.mjs",
"rag:serve": "node scripts/rag-lab-server.mjs"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.6.0",
"@tailwindcss/vite": "^4.1.13",
"astro": "^5.13.6",
"ethers": "^5.4.6",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"tailwindcss": "^4.1.13",
"yaml": "^2.8.1"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^11.10.1",
"@types/node": "^22.18.0",
"pagefind": "^1.4.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3"
}
}