Files
docs/package.json
zeekayandhanzo-dev 60b190f687 fix(build): green the framework — one waku, one postcss form, no dev-preview tsc
`@hanzo/docs-preview` was the one package that would not build:
`waku` was declared twice with contradictory pins — `1.0.0-alpha.6` in
`dependencies`, `1.0.0-beta.1` in `devDependencies`. dependencies won, so
the build ran on alpha.6, which pulls vite 7; `resolve.tsconfigPaths` is a
vite 8 feature, so every `@/*` import silently failed to resolve:

    [vite]: Rollup failed to resolve import "@/lib/source"
            from src/pages/_api/api/search.ts

One declaration, in `dependencies`, at the newer pin. waku beta.1 brings
vite 8, tsconfigPaths resolves, the package builds.

`apps/dns-docs/postcss.config.mjs` was the only app still on the Tailwind v3
plugin form (`tailwindcss` + an undeclared `autoprefixer`) while its CSS is
v4 (`@import 'tailwindcss'`). It now matches the other twenty apps.

`@typescript/native-preview` is gone: 7.0.0-dev is *behind* typescript 7
stable, and nothing in the repo invoked tsgo.

Dead deps dropped after verifying zero references: `tailwindcss-animate`
(a Tailwind v3 plugin, in three v4 apps), stray `tailwind-merge`,
`class-variance-authority` in preview.

turbo run build --filter='./packages/*' --continue
  Tasks: 30 successful, 30 total   (was 29/30)

(cherry picked from commit 773ee151c2)

Co-authored-by: Hanzo Dev <dev@hanzo.ai>
2026-08-04 18:39:19 -07:00

34 lines
1.0 KiB
JSON

{
"name": "hanzo-docs",
"description": "Hanzo Docs — the documentation framework and hub for the Hanzo ecosystem (docs.hanzo.ai).",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"dev:examples": "turbo run dev --filter=./examples/*",
"lint": "turbo run lint",
"lint:format": "oxfmt --check",
"format": "oxfmt",
"release": "turbo run build --filter=./packages/* && pnpm -r publish --access public --no-git-checks && changeset tag",
"test": "vitest",
"types:check": "turbo run types:check --continue",
"version": "changeset version && node scripts/update-stackblitz-versions.mjs && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"concurrently": "^10.0.0",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"rimraf": "^6.1.3",
"turbo": "2.9.15",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": ">= 24.14.0"
},
"packageManager": "pnpm@11.1.0"
}