forked from yearn/yearn-devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.71 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.71 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
{
"name": "yearn-devdocs",
"version": "0.4.3",
"license": "MIT",
"scripts": {
"docusaurus": "docusaurus",
"get-branch-name": "git rev-parse --abbrev-ref HEAD > .branch-name",
"start": "bun run runAddressCheck && bun run get-branch-name && BRANCH_NAME=$(cat .branch-name) IS_DEV=true docusaurus start",
"start-no-check": "bun run get-branch-name && BRANCH_NAME=$(cat .branch-name) IS_DEV=true docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"test": "bunx ava",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"make-sol-doc": "solidity-docgen --templates=templates --helpers=helpers/solidityHelpers.js -i ../yearn-vaults/contracts/ -o docs/v2/smart-contracts",
"make-vyper-doc": "bunx vydoc -i ../yearn-vaults/contracts/ -o docs/v2/smart-contracts -t ./templates/contract.ejs",
"vydoc": "bunx vydoc -i ../yearn-vaults-v3/contracts/ -o ./templates/temp -t ./templates/contract.ejs -c $(which vyper)",
"v3-docs": "node natspec/scripts/natspec-generate.mjs",
"runAddressCheck": "bun scripts/runAddressChecks.ts"
},
"packageManager": "bun@1.1.0",
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^2.0.1",
"@docusaurus/core": "3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@mdx-js/react": "^3.1.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"clsx": "1.1.1",
"dotenv": "^16.6.1",
"hast-util-is-element": "1.1.0",
"lucide-react": "^0.465.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.4",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"solc": "^0.8.31",
"solidity-docgen": "^0.5.17",
"viem": "^2.41.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@openzeppelin/contracts": "^4.9.6",
"@tsconfig/docusaurus": "1.0.2",
"@types/react": "18.3.1",
"@types/react-helmet": "6.1.1",
"@types/react-router-dom": "5.1.7",
"ava": "3.15.0",
"glob": "7.1.6",
"glob-promise": "4.1.0",
"ts-node": "9.1.1",
"typescript": "5.4.5",
"vydoc": "git+https://github.com/rossgalloway/vydoc.git"
}
}