-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "ethereum-indexer-monorepo",
"private": true,
"version": "0.0.1",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"ipfs-gateway-emulator": "4.2.1-ipfs.2",
"pwag": "^0.2.0",
"set-defaults": "^0.0.2",
"syncpack": "^11.2.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "4.0.0-next.18",
"typedoc-vitepress-theme": "1.0.0-next.3",
"typescript": "^5.3.2",
"vitepress": "1.0.0-rc.30"
},
"volta": {
"node": "18.7.0"
},
"scripts": {
"prepare": "set-defaults .vscode",
"build": "pnpm -r build",
"sync-deps": "syncpack fix-mismatches",
"publish-typedoc": "typedoc --options typedoc.json ",
"serve-docs": "ipfs-emulator --only -d docs -p 8080",
"docs:dev": "pwag docs/public/icon.svg docs/web-config.json -o docs/public && npm run publish-typedoc && vitepress dev docs",
"docs:build": "pwag docs/public/icon.svg docs/web-config.json -o docs/public && npm run publish-typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs"
}
}