-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.74 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
{
"name": "agent-recall-monorepo",
"version": "0.1.0",
"private": true,
"description": "AgentRecall stable and preview desktop applications.",
"license": "MIT",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"setup": "npm run setup:v1 && npm run setup:v2",
"setup:v1": "node scripts/setup-app.mjs apps/main-1.0",
"setup:v2": "node scripts/setup-app.mjs apps/main-2.0",
"dev": "npm run dev:v1",
"dev:v1": "npm --prefix apps/main-1.0 run dev",
"dev:v2": "npm --prefix apps/main-2.0 run dev",
"test": "npm run test:repo && npm run test:v1 && npm run test:v2",
"test:repo": "node --test scripts/*.test.mjs",
"test:v1": "npm --prefix apps/main-1.0 test",
"test:v2": "npm --prefix apps/main-2.0 test",
"test:workflow-transaction": "npm --prefix apps/main-2.0 run test:workflow-transaction",
"test:workflow-performance": "npm --prefix apps/main-2.0 run test:workflow-performance",
"test:scripts": "npm run test:repo && npm --prefix apps/main-1.0 run test:scripts && npm --prefix apps/main-2.0 run test:scripts",
"typecheck": "npm --prefix apps/main-1.0 run typecheck && npm --prefix apps/main-2.0 run typecheck",
"build": "npm --prefix apps/main-1.0 run build && npm --prefix apps/main-2.0 run build",
"package:smoke": "npm --prefix apps/main-1.0 run package:smoke",
"package:smoke:v2": "npm --prefix apps/main-2.0 run package:smoke",
"package:smoke:all": "node scripts/run-package-smokes.mjs",
"release:preflight": "npm run release-note:check && npm run package:smoke:all && npm run release:preflight:openviking",
"release:preflight:openviking": "npm --prefix apps/main-2.0 run release:preflight:openviking",
"release-note:check": "node scripts/release-notes.mjs check-range"
}
}