-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.76 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
{
"name": "titaniumsdk.com",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/prune-builds.ts && node scripts/sync-doc-assets.ts && next build",
"check": "next typegen && tsc --noEmit",
"check:contrast": "node scripts/check-contrast.ts",
"check:registry": "node scripts/validate-registry.ts",
"dev": "next dev",
"docgen": "node scripts/docgen/index.ts",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"redirects": "node scripts/generate-api-redirects.ts",
"registry:builds": "node scripts/generate-builds.ts",
"registry:modules": "node scripts/generate-modules.ts",
"registry:prune": "node scripts/prune-builds.ts",
"start": "next start",
"tokens": "node scripts/generate-tokens.ts && oxfmt src/app/globals.css",
"test": "node --test 'scripts/**/*.test.ts' 'src/**/*.test.ts'",
"assets": "node scripts/sync-doc-assets.ts",
"audit:guides": "node scripts/audit-legacy-guides.ts",
"registry:module-docs": "node scripts/backfill-module-docs.ts",
"registry:community": "node scripts/generate-community-modules.ts"
},
"dependencies": {
"dotenv": "17.4.2",
"markdown-it": "15.0.1",
"next": "16.3.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"sanitize-html": "2.17.7",
"yaml": "2.9.0",
"zod": "4.5.4"
},
"devDependencies": {
"@tailwindcss/postcss": "4.3.3",
"@types/markdown-it": "14.2.0",
"@types/node": "26.4.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@types/sanitize-html": "2.16.1",
"babel-plugin-react-compiler": "1.0.0",
"oxfmt": "0.65.0",
"oxlint": "1.80.0",
"tailwindcss": "4.3.3",
"typescript": "7.0.2"
},
"packageManager": "pnpm@11.24.0"
}