-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.97 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
{
"name": "@supertokens/docs",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "blume dev",
"start": "blume dev",
"build": "blume build --strict",
"eval": "blume eval --agent codex",
"eval:ask-ai": "node scripts/ask-ai/eval-magic-link.mjs",
"validate": "blume validate --strict",
"preview": "blume preview",
"serve": "blume preview",
"lint:prettier": "prettier . --write",
"lint:prettier:check": "prettier . --check",
"lint:vale": "vale docs components islands CONTRIBUTING.md",
"postinstall": "patch-package",
"typecheck": "blume check",
"routes:manifest": "node scripts/blume/create-route-manifest.mjs",
"routes:legacy": "npm run routes:manifest && node scripts/migration/generate-legacy-redirects.mjs",
"write-code-blocks": "bun run ./scripts/write-code-blocks.ts",
"lint:code-blocks": "bun run ./scripts/code-blocks/lint.ts",
"format-code-blocks": "bun run ./scripts/format-code-blocks.ts",
"check-code-blocks": "./scripts/check-code-blocks.sh",
"fix:nested-tabs": "bun run ./scripts/blume/migrate-nested-tabs.ts docs",
"fix:sidebar-orders": "bun run ./scripts/blume/normalize-sidebar-orders.ts docs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npm run build && playwright test",
"test:preview-smoke": "playwright test --config playwright.preview.config.ts",
"test:bun": "bun test",
"test:bun:watch": "bun test --watch",
"fix:reference-anchors": "bun run ./scripts/sdk-references/normalize-markdown-anchors.ts docs/references",
"generate:references:typescript": "bun run ./scripts/sdk-references/typescript-references.ts",
"generate:references:plugins": "bun run ./scripts/sdk-references/supertokens-plugins-references.ts"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@vercel/microfrontends": "^2.4.0",
"ai": "^7.0.93",
"blume": "1.5.3",
"clsx": "^2.1.1",
"dompurify": "^3.4.13",
"lucide-react": "^1.28.0",
"marked": "^18.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@mdx-js/mdx": "^3.1.0",
"@playwright/test": "^1.62.1",
"@types/bun": "^1.2.9",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"fs-extra": "^11.2.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"js-yaml": "^4.1.0",
"patch-package": "^8.0.1",
"prettier": "3.3.3",
"tree-sitter": "^0.21.0",
"tree-sitter-go": "^0.21.2",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.21.2",
"typedoc": "^0.28.20",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-inline-sources": "^1.3.0",
"typedoc-plugin-markdown": "^4.8.1",
"typedoc-plugin-mdn-links": "^5.0.9",
"typescript": "^6.0.3",
"unist-util-visit": "^5.0.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22.12.0"
}
}