-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.18 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "aya-prover-docs",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "The documentation site of the Aya prover.",
"main": "index.js",
"scripts": {
"dev": "pnpm run build-aya && vitepress dev src --host",
"build": "pnpm run build-aya && vitepress build src",
"serve": "pnpm run build-aya && vitepress serve src",
"build-aya": "node scripts/build-aya.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aya-prover/aya-prover-docs.git"
},
"author": "Aya prover developers",
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/aya-prover/aya-prover-docs/issues"
},
"homepage": "https://github.com/aya-prover/aya-prover-docs#readme",
"dependencies": {
"@vscode/markdown-it-katex": "^1.1.0",
"markdown-it-footnote": "^4.0.0"
},
"devDependencies": {
"@types/markdown-it-footnote": "^3.0.4",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"vitepress": "1.5.0",
"vue": "^3.5.13"
},
"pnpm": {
"overrides": {
"katex": "^0.16.11"
},
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom"
]
}
}
}