-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.68 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.68 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
{
"name": "zipline-docs",
"version": "4.4.0",
"private": true,
"scripts": {
"dev": "GO_WATCHER_BIN=./build/watcher node scripts/watch.mjs & next dev --turbo",
"build": "GO_SIDEBAR_BIN=./build/sidebar-gen node scripts/runAll.mjs && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ./src/**/*.{ts,tsx} ./*.{md,js,json,yml}",
"scripts": "GO_SIDEBAR_BIN=./build/sidebar-gen node scripts/runAll.mjs",
"get-openapi": "node scripts/getOpenapi.mjs",
"go:build": "pnpm run go:build:sidebar && pnpm run go:build:validate && pnpm run go:build:watcher",
"go:build:sidebar": "cd build-tools; go build -o ../build/sidebar-gen ./cmd/sidebar-gen",
"go:build:validate": "cd build-tools; go build -o ../build/validate-links ./cmd/validate-links",
"go:build:watcher": "cd build-tools; go build -o ../build/watcher ./cmd/watcher",
"go:run:sidebar-gen": "./build/sidebar-gen",
"go:run:validate": "./build/validate-links",
"go:run:watcher": "./build/watcher"
},
"dependencies": {
"@docsearch/react": "3.9.0",
"@floating-ui/react": "^0.27.18",
"@headlessui/react": "^2.2.9",
"@octokit/types": "^16.0.0",
"@shikijs/langs": "^4.0.1",
"@shikijs/themes": "^4.0.1",
"@tabler/icons-react": "^3.38.0",
"@tailwindcss/typography": "^0.5.19",
"bytes": "^3.1.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"framer-motion": "^12.34.4",
"gray-matter": "^4.0.3",
"image-size": "^1.2.0",
"next": "^16.1.6",
"next-mdx-remote": "^6.0.0",
"next-seo": "^6.6.0",
"next-themes": "^0.4.6",
"rapidoc": "^9.3.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-parallax-tilt": "^1.7.319",
"rehype-mdx-code-props": "^3.0.1",
"rehype-slug": "^6.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.4",
"shiki": "^3.23.0",
"styled-jsx": "^5.1.7",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/adm-zip": "^0.5.8",
"@types/bytes": "^3.1.5",
"@types/node": "^22.13.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"adm-zip": "^0.5.17",
"chokidar": "^5.0.0",
"eslint": "^10.0.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a"
}