-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.21 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.21 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "anyhunt",
"version": "0.0.2",
"private": true,
"type": "module",
"description": "Anyhunt - Unified Platform (Anyhunt Dev + Moryflow)",
"scripts": {
"dev:anyhunt": "pnpm build:anyhunt && pnpm --filter @anyhunt/anyhunt-server start:dev",
"dev:anyhunt:www": "pnpm --filter @anyhunt/anyhunt-www dev",
"dev:console": "pnpm --filter @anyhunt/console dev",
"dev:admin": "pnpm --filter @anyhunt/admin dev",
"dev:moryflow:pc": "pnpm --filter @moryflow/pc dev",
"build": "turbo run build",
"build:agents": "tsc-multi --config tsc-multi.stage1.json && tsc-multi --config tsc-multi.stage2.json",
"build:packages": "pnpm --filter @moryflow/model-bank build && pnpm run build:agents",
"postinstall": "node scripts/postinstall.cjs",
"build:anyhunt": "pnpm --filter @anyhunt/anyhunt-server... build",
"build:anyhunt:www": "pnpm --filter @anyhunt/anyhunt-www build",
"build:console": "pnpm --filter @anyhunt/console build",
"build:admin": "pnpm --filter @anyhunt/admin build",
"pretypecheck": "pnpm build:packages",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"pretest:unit": "pnpm build:packages",
"test:unit": "turbo run test:unit",
"test:e2e": "turbo run test:e2e",
"harness:sync": "node scripts/generate-agent-surface.mjs",
"harness:check": "node scripts/check-doc-contracts.mjs && node scripts/generate-agent-surface.mjs --check",
"trace:review": "node scripts/review-agent-traces.mjs",
"docs:garden": "node scripts/check-plan-drift.mjs",
"clean": "turbo run clean && node scripts/clean.cjs",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"validate:production": "node scripts/run-production-validation.mjs all",
"validate:production:memox": "node scripts/run-production-validation.mjs memox",
"validate:production:cloud-sync": "node scripts/run-production-validation.mjs cloud-sync",
"reset:knowledge-index:plan": "node scripts/reset-knowledge-index-domain.mjs",
"reset:knowledge-index:execute": "node scripts/reset-knowledge-index-domain.mjs --execute",
"rebuild:knowledge-index:plan": "node scripts/rebuild-knowledge-index-domain.mjs",
"rebuild:knowledge-index:execute": "node scripts/rebuild-knowledge-index-domain.mjs --execute",
"reset:rewrite:plan": "node scripts/reset-rewrite-state.mjs",
"reset:rewrite:execute": "node scripts/reset-rewrite-state.mjs --execute",
"prepare": "node scripts/prepare.cjs"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@moryflow/eslint-config": "workspace:*",
"@swc/core-darwin-arm64": "1.15.8",
"@swc/core-darwin-x64": "1.15.8",
"@swc/core-linux-x64-gnu": "1.15.8",
"@swc/core-win32-x64-msvc": "1.15.8",
"@types/node": "^22.18.12",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"husky": "^9.1.7",
"lightningcss-linux-x64-gnu": "1.30.1",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"sass-embedded-linux-x64": "1.97.1",
"tsc-multi": "^1.1.0",
"turbo": "^2.4.4",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.12.2",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.12",
"lightningcss": "1.30.1",
"@prisma/adapter-pg": "7.2.0",
"@prisma/client": "7.2.0",
"prisma": "7.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"@types/react": "19.1.17",
"@types/react-dom": "19.1.9",
"@electron/node-gyp": "10.2.0-electron.1",
"zod-validation-error": "5.0.0"
},
"supportedArchitectures": {
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
]
},
"patchedDependencies": {
"@openai/agents-extensions@0.5.1": "patches/@openai__agents-extensions@0.5.1.patch",
"dmg-builder@26.0.12": "patches/dmg-builder@26.0.12.patch"
},
"allowNonAppliedPatches": true
}
}