-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.76 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.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
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
96
{
"name": "@happyvertical/smrt",
"description": "smrt framework for building vertical AI agents",
"author": "Will Griffin <willgriffin@gmail.com>",
"type": "module",
"version": "0.21.51",
"scripts": {
"format": "turbo format",
"format-check": "turbo format-check",
"prepare": "git rev-parse --git-dir > /dev/null 2>&1 && lefthook install || echo 'Skipping lefthook install (not in git repository)'",
"test": "turbo test",
"test:watch": "turbo test:watch",
"test:coverage": "npx vitest run --coverage",
"test:ui": "npx vitest --ui",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean && rm -rf .turbo node_modules/.cache",
"build": "turbo build",
"build:clean": "pnpm run clean && pnpm run build",
"typecheck": "turbo typecheck",
"dev": "turbo dev --parallel",
"validate-build": "node scripts/validate-build.js",
"changeset": "changeset",
"changeset:auto": "npx tsx scripts/auto-changeset.ts",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"version": "node scripts/check-version-limit.js && changeset version",
"release": "pnpm run build && node scripts/publish-sequential.js",
"smrt": "pnpm --filter @smrt/core cli",
"docs:site": "npm run --prefix docs start",
"docs:site:build": "npm run --prefix docs build",
"docs:site:dev": "npm run --prefix docs dev",
"deps:graph": "(echo '```mermaid' && npx depcruise packages/*/src --config .dependency-cruiser.cjs --output-type mermaid --include-only '^packages' --collapse '^packages/[^/]+' && echo '```') > SKILL_TREE.md",
"deps:modules": "for pkg in packages/*; do [ -d \"$pkg/src\" ] && (cd \"$pkg\" && (echo '```mermaid' && npx depcruise src --config ../../.dependency-cruiser.cjs --output-type mermaid --include-only '^src' && echo '```') > SKILL_TREE.md); done",
"deps:all": "npm run deps:graph && npm run deps:modules"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@playwright/test": "^1.57.0",
"@vitest/coverage-v8": "4.0.17",
"acorn": "^8.15.0",
"chokidar": "^5.0.0",
"concurrently": "9.2.1",
"dependency-cruiser": "^17.3.6",
"express": "^5.2.1",
"lefthook": "^2.0.15",
"livereload": "^0.10.3",
"playwright-core": "^1.57.0",
"tsx": "^4.21.0",
"turbo": "~2.7.4",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.17"
},
"resolutions": {
"@types/node": "24.10.9"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"@happyvertical/smrt-types": "workspace:*",
"@happyvertical/smrt-config": "workspace:*",
"@happyvertical/smrt-core": "workspace:*",
"@happyvertical/ai": "^0.71.20",
"@happyvertical/cache": "^0.71.20",
"@happyvertical/documents": "^0.71.20",
"@happyvertical/email": "^0.71.20",
"@happyvertical/encryption": "^0.71.20",
"@happyvertical/files": "^0.71.20",
"@happyvertical/geo": "^0.71.20",
"@happyvertical/images": "^0.71.20",
"@happyvertical/jobs": "^0.71.20",
"@happyvertical/json": "^0.71.20",
"@happyvertical/logger": "^0.71.20",
"@happyvertical/messages": "^0.71.20",
"@happyvertical/ocr": "^0.60.29",
"@happyvertical/pdf": "^0.62.20",
"@happyvertical/projects": "^0.71.20",
"@happyvertical/repos": "^0.71.20",
"@happyvertical/secrets": "^0.71.20",
"@happyvertical/spider": "^0.60.9",
"@happyvertical/sql": "^0.71.20",
"@happyvertical/utils": "^0.71.20"
}
}
}