-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 961 Bytes
/
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
{
"type": "module",
"scripts": {
"dev": "vitepress dev",
"build": "bun run ortfodb:copy && bun run jsonschemas:copy && bun run favicons:generate && bun run favicons:inject && vitepress build",
"preview": "vitepress preview",
"favicons:generate": "real-favicon generate favicon.json .favicon-data.json public/ ",
"favicons:inject": "cp .vitepress/favicon.ts public/favicon.ts && real-favicon inject .favicon-data.json public favicon.ts && mv public/favicon.ts .vitepress/",
"jsonschemas:copy": "./copy-all-schemas",
"ortfodb:copy": "rm -r db/; cp -r ortfodb/docs db/",
"submodules:pull": "git submodule update --init --recursive --remote"
},
"devDependencies": {
"@types/json-schema": "^7.0.15",
"cli-real-favicon": "^0.0.8",
"vitepress": "^1.1.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"htmlparser2": "^9.1.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0"
}
}