-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.81 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "clerk-docs-2023",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.13 <23"
},
"scripts": {
"lint": "concurrently \"npm:lint:*(!:fix)\"",
"lint:fix": "concurrently -m 1 \"npm:lint:*:fix\"",
"format": "prettier . --write",
"lint:formatting": "prettier . --check",
"lint:check-quickstarts": "node ./scripts/check-quickstarts.mjs",
"lint:check-frontmatter": "node ./scripts/check-frontmatter.mjs",
"lint:check-annotations": "node ./scripts/check-annotations.mjs",
"lint:check-status-tags": "tsx scripts/check-status-tags.ts",
"lint:check-empty-links": "node ./scripts/check-empty-links.mjs",
"lint:check-relative-links": "tsx scripts/check-relative-links.ts",
"lint:check-relative-links:fix": "npm run lint:check-relative-links -- --fix",
"lint:check-redirects": "bun ./scripts/check-redirects.ts",
"lint:check-redirects:tsx": "tsx ./scripts/check-redirects.ts",
"lint:check-duplicate-redirects": "bun ./scripts/check-duplicate-redirects.ts",
"lint:check-svgs": "tsx scripts/check-svgs.ts",
"lint:check-svgs:fix": "npm run lint:check-svgs -- --fix",
"lint:check-images": "tsx scripts/check-images.ts",
"lint:check-images:fix": "npm run lint:check-images -- --fix",
"lint:check-description-backticks": "tsx scripts/check-description-backticks.ts",
"lint:check-prompt-deeplink-length": "tsx scripts/check-prompt-deeplink-length.ts",
"lint:check-dashboard-links": "tsx scripts/check-dashboard-links.ts",
"dashboard-routes:update": "tsx scripts/check-dashboard-links.ts --dashboard-root ../../dashboard --update",
"lint:check-description-backticks:fix": "npm run lint:check-description-backticks -- --fix",
"trace-redirect": "bun ./scripts/trace-redirect.ts",
"build": "bun ./scripts/build-docs.ts",
"build:silence-typedoc-errors": "bun ./scripts/build-docs.ts --silence-typedoc-errors",
"build:tsx": "tsx ./scripts/build-docs.ts",
"search:update": "bun ./scripts/update-algolia-records.ts",
"search:regression": "bun ./scripts/search-regression.ts",
"dev": "bun --watch ./scripts/build-docs.ts --watch",
"dev:tsx": "tsx watch ./scripts/build-docs.ts --watch",
"test": "vitest --silent",
"typedoc:link": "tsx scripts/link-typedoc.ts",
"typedoc:extract-pages": "tsx scripts/extract-typedoc-pages.ts",
"typedoc:extract-pages:with-src": "tsx scripts/extract-typedoc-pages.ts --with-src",
"move-doc": "bun scripts/move-doc.ts",
"delete-doc": "node scripts/delete-doc.mjs",
"migrate:clerk": "tsx scripts/migrate-clerk-docs-to-clerk.ts"
},
"devDependencies": {
"@parcel/watcher": "^2.5.1",
"@sindresorhus/slugify": "3.0.1",
"@types/node": "^22.13.2",
"algoliasearch": "^5.46.2",
"bloom-filters": "^3.0.4",
"bun": "^1.2.20",
"chokidar": "^4.0.3",
"concurrently": "^8.2.2",
"dotenv": "^17.2.0",
"jsonc-parser": "^3.3.1",
"mdast-util-to-string": "^4.0.0",
"path-to-regexp": "^6.3.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-nginx": "^1.0.3",
"prettier-plugin-svelte": "^3.2.6",
"readdirp": "^3.6.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.0.1",
"simple-git": "^3.36.0",
"svgo": "^4.1.0",
"symlink-dir": "^6.0.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"unist-builder": "^4.0.0",
"unist-util-filter": "^5.0.1",
"unist-util-map": "^4.0.0",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.1",
"vfile-reporter": "^8.0.0",
"vitest": "^3.2.6",
"yaml": "^2.7.0",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621"
}