-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.81 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
{
"name": "amend",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.4.2",
"zod": "^4.4.3",
"typescript": "^6",
"next-themes": "^0.4.6",
"convex": "^1.41.0",
"better-auth": "^1.6.18",
"@convex-dev/better-auth": "^0.12.3",
"@types/react-dom": "^19.2.3"
}
},
"type": "module",
"scripts": {
"dev": "WORKTREE_NAME=${WORKTREE_NAME:-$(basename \"$PWD\")} turbo dev",
"build": "turbo build && bun scripts/build-size.ts",
"check-types": "turbo check-types",
"lint": "oxlint .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "bun test",
"smoke": "bun scripts/smoke.ts",
"agent-ready": "bun test scripts/agent-ready.test.ts && bun run readiness",
"agent-ready:built": "bun scripts/agent-ready-built.ts",
"agent-ready:live": "bun scripts/agent-ready-live.ts",
"agent-ready:live:json": "bun scripts/agent-ready-live.ts --json",
"agent-ready:live:validate-report": "bun scripts/agent-ready-live-report-validate.ts",
"agent-ready:status": "bun scripts/agent-ready-status.ts",
"agent-ready:status:json": "bun scripts/agent-ready-status.ts --json",
"agent-ready:status:validate-report": "bun scripts/agent-ready-status-report-validate.ts",
"agent-ready:production": "bun run readiness:strict && bun run agent-ready:built && bun run agent-ready:live",
"agent-ready:production:json": "bun scripts/agent-ready-production.ts --json",
"agent-ready:refresh-report": "bun scripts/agent-ready-refresh-report.ts",
"agent-ready:final-gate": "bun scripts/agent-ready-final-gate.ts",
"agent-ready:completion-audit": "bun scripts/agent-ready-completion-audit.ts",
"agent-ready:completion-audit:json": "bun scripts/agent-ready-completion-audit.ts --json",
"agent-ready:completion-audit:validate-report": "bun scripts/agent-ready-completion-audit-report-validate.ts",
"agent-ready:sync-audit": "bun scripts/agent-ready-sync-audit.ts",
"agent-ready:sync-audit:check": "bun scripts/agent-ready-sync-audit.ts --check",
"agent-ready:audit:check": "bun run agent-ready:production:validate-report agent-ready-production-report.json && bun run agent-ready:live:validate-report agent-ready-live-report.json && bun run agent-ready:status:validate-report agent-ready-status.json && bun run agent-ready:completion-audit:validate-report agent-ready-completion-audit-report.json && bun run agent-ready:sync-audit:check agent-ready-production-report.json",
"agent-ready:production:validate-report": "bun scripts/agent-ready-production-report-validate.ts",
"build:size": "bun scripts/build-size.ts",
"repo:hygiene": "bun scripts/repo-hygiene.ts",
"source:size": "bun scripts/source-size-audit.ts",
"source:size:report": "bun scripts/source-size-audit.ts --report",
"readiness": "bun scripts/readiness.ts",
"readiness:strict": "bun scripts/readiness.ts --strict",
"dev:web": "WORKTREE_NAME=${WORKTREE_NAME:-$(basename \"$PWD\")} turbo -F web dev",
"dev:docs": "WORKTREE_NAME=${WORKTREE_NAME:-$(basename \"$PWD\")} turbo -F fumadocs dev",
"dev:server": "turbo -F @amend/backend dev",
"dev:setup": "bun scripts/setup-agentic-convex.ts",
"dev:setup:local": "bun scripts/setup-agentic-convex.ts --local",
"check": "bun run lint && bun run format:check && bun run check-types && bun run repo:hygiene && bun run source:size && bun run test",
"fix": "oxlint --fix . && oxfmt ."
},
"dependencies": {
"@amend/env": "workspace:*",
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@amend/config": "workspace:*",
"@types/node": "^25.9.3",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0",
"turbo": "^2.9.18",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.5"
}