-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 4.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 4.38 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
88
89
90
91
92
93
94
95
{
"name": "@happyvertical/sdk",
"description": "HAppy VErtical SDK - A TypeScript monorepo for building vertical AI agents",
"author": "Will Griffin <willgriffin@gmail.com>",
"type": "module",
"version": "0.71.20",
"scripts": {
"format": "turbo run format",
"format:check": "turbo run format --dry-run",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && lefthook install || echo 'Skipping lefthook install (not in git repository)'",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:unit": "npx vitest run --grep '\\.test\\.ts$'",
"test:integration": "npx vitest run --grep '\\.spec\\.ts$'",
"test:examples": "npx vitest run --grep '\\.examples\\.test\\.ts$'",
"test:optional": "turbo run test:optional",
"test:core": "npx vitest run packages/",
"test:core:watch": "npx vitest packages/",
"test:coverage": "npx vitest run --coverage",
"test:ui": "npx vitest --ui",
"test:dind": "./.devcontainer/scripts/test-dind-setup.sh",
"test:ci": "act pull_request",
"test:ci-debug": "act pull_request --verbose --shell",
"test:ci-build": "act -j test --step 'Build packages'",
"test:ci-clean": "act --rm pull_request",
"debug-ci": "./.devcontainer/scripts/debug-ci.sh",
"investigate-ci": "./.devcontainer/scripts/investigate-ci.sh",
"test-exports": "./.devcontainer/scripts/test-exports.sh",
"validate-act-setup": "./.devcontainer/scripts/validate-act-setup.sh",
"rebuild-devcontainer": "./.devcontainer/scripts/rebuild-devcontainer.sh",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --apply",
"clean": "turbo run clean",
"build": "turbo run build --filter='!@happyvertical/docs'",
"build:clean": "turbo run clean && turbo run build --filter='!@happyvertical/docs'",
"typecheck": "turbo run typecheck",
"mcp:setup-project": "cp scripts/mcp-smrt.sh ./scripts/ && chmod +x ./scripts/mcp-smrt.sh",
"mcp:verify-project": "./scripts/mcp-smrt.sh verify",
"docs:site": "npm run --prefix docs start",
"docs:site:build": "npm run --prefix docs build",
"docs:site:dev": "npm run --prefix docs dev",
"validate-build": "node scripts/validate-build.js",
"dev": "turbo run dev --parallel",
"dev:shell": "docker compose -f .devcontainer/docker-compose.yml up -d && docker compose -f .devcontainer/docker-compose.yml exec app bash -c '/workspaces/sdk/.devcontainer/scripts/setup-claude-container.sh && exec bash'",
"agent:sync": "node scripts/sync-agent-context.js",
"agent:check": "node scripts/sync-agent-context.js --check",
"changeset:auto": "npx tsx scripts/auto-changeset.ts",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm run changeset:auto && pnpm run changeset:version && pnpm run build && pnpm run validate-build && pnpm run changeset:publish",
"gnode:create": "pnpm --filter @happyvertical/gnode cli:create",
"deps:graph": "npx depcruise packages/*/src --config .dependency-cruiser.cjs --output-type mermaid --include-only '^packages' --collapse '^packages/[^/]+' > SKILL_TREE.md",
"deps:modules": "for pkg in packages/*; do [ -d \"$pkg/src\" ] && (cd \"$pkg\" && npx depcruise src --config ../../.dependency-cruiser.cjs --output-type mermaid --include-only '^src' > SKILL_TREE.md); done",
"deps:all": "npm run deps:graph && npm run deps:modules"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@jpisnice/shadcn-ui-mcp-server": "1.1.4",
"chokidar": "^5.0.0",
"concurrently": "9.2.1",
"dependency-cruiser": "^17.3.10",
"express": "^5.2.1",
"lefthook": "^2.1.6",
"livereload": "^0.10.3",
"patch-package": "^8.0.1",
"turbo": "2.9.6",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.9.3",
"vite": "7.3.2",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.4"
},
"resolutions": {
"@types/node": "24.12.2"
},
"pnpm": {
"overrides": {
"rollup": "4.60.1",
"@happyvertical/ai": "workspace:*",
"@happyvertical/cache": "workspace:*",
"@happyvertical/files": "workspace:*",
"@happyvertical/logger": "workspace:*",
"@happyvertical/utils": "workspace:*"
}
},
"engines": {
"node": ">=24",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.9"
}