-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.53 KB
/
package.json
File metadata and controls
32 lines (32 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
{
"name": "@herb-tools/docs",
"version": "0.0.0",
"private": true,
"homepage": "https://docs.herb-tools.dev",
"bugs": "https://github.com/marcoroth/herb/issues",
"repository": {
"type": "git",
"url": "https://github.com/marcoroth/herb.git",
"directory": "docs"
},
"scripts": {
"dev": "vitepress dev",
"build": "yarn vendor:playground && yarn vendor:c-reference && yarn fetch:contributors && vitepress build",
"vendor:c-reference": "cd .. && doxygen Doxyfile",
"vendor:playground": "cd ../playground && yarn build && cd - && cp ../playground/dist/index.html ./docs/public/playground-embed.html && cp ../playground/dist/prism/index.html ./docs/public/playground-prism-embed.html && cp -R ../playground/dist/assets ./docs/public",
"preview": "vitepress preview",
"clean": "rimraf .vitepress/dist/ && rimraf .vitepress/cache/ && rimraf ./.vitepress/data/contributors.json && rimraf ./docs/public/assets && rimraf ./docs/public/playground-embed.html && rimraf ./docs/public/playground-prism-embed.html && rimraf ./docs/public/c-reference",
"fetch:contributors": "mkdir -p .vitepress/data/ && gh api -X get https://api.github.com/repos/marcoroth/herb/contributors > .vitepress/data/contributors.json"
},
"dependencies": {
"@herb-tools/browser": "0.9.1",
"@herb-tools/core": "0.9.1",
"@herb-tools/node": "0.9.1",
"medium-zoom": "^1.1.0"
},
"devDependencies": {
"@shikijs/vitepress-twoslash": "^4.0.2",
"vitepress": "^2.0.0-alpha.16",
"vitepress-plugin-group-icons": "^1.7.1"
}
}