-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.17 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.17 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
{
"name": "clerk-docs-2023",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"lint": "concurrently \"npm:lint:*\"",
"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-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-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",
"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"
},
"devDependencies": {
"@parcel/watcher": "^2.5.1",
"@sindresorhus/slugify": "^2.2.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",
"glob": "^11.0.1",
"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.27.0",
"svgo": "^4.0.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.0.7",
"yaml": "^2.7.0",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264"
}