-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 2.71 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
{
"name": "agentdock-workspace",
"private": true,
"packageManager": "yarn@1.22.22",
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "yarn build:contracts && yarn build:checkpoint && yarn typecheck:contracts && yarn typecheck:checkpoint && yarn typecheck:agentdock && yarn typecheck:checkpoint-postgres && yarn typecheck:checkpoint-sqlite && yarn typecheck:checkpoint-mongodb && yarn typecheck:checkpoint-redis && yarn typecheck:models",
"test": "yarn workspace @agentdock/contracts test && yarn workspace @agentdock/checkpoint test && yarn workspace agentdock test && yarn workspace @agentdock/checkpoint-postgres test && yarn workspace @agentdock/checkpoint-sqlite test && yarn workspace @agentdock/checkpoint-mongodb test && yarn workspace @agentdock/checkpoint-redis test && yarn workspace @agentdock/models test",
"build": "yarn build:contracts && yarn build:checkpoint && yarn build:agentdock && yarn build:checkpoint-postgres && yarn build:checkpoint-sqlite && yarn build:checkpoint-mongodb && yarn build:checkpoint-redis && yarn build:models",
"ci": "yarn format:check && yarn typecheck && yarn test && yarn build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "yarn build && changeset publish",
"typecheck:contracts": "yarn workspace @agentdock/contracts typecheck",
"typecheck:checkpoint": "yarn workspace @agentdock/checkpoint typecheck",
"typecheck:agentdock": "yarn workspace agentdock typecheck",
"typecheck:checkpoint-postgres": "yarn workspace @agentdock/checkpoint-postgres typecheck",
"typecheck:checkpoint-sqlite": "yarn workspace @agentdock/checkpoint-sqlite typecheck",
"typecheck:checkpoint-mongodb": "yarn workspace @agentdock/checkpoint-mongodb typecheck",
"typecheck:checkpoint-redis": "yarn workspace @agentdock/checkpoint-redis typecheck",
"typecheck:models": "yarn workspace @agentdock/models typecheck",
"build:contracts": "yarn workspace @agentdock/contracts build",
"build:checkpoint": "yarn workspace @agentdock/checkpoint build",
"build:agentdock": "yarn workspace agentdock build",
"build:checkpoint-postgres": "yarn workspace @agentdock/checkpoint-postgres build",
"build:checkpoint-sqlite": "yarn workspace @agentdock/checkpoint-sqlite build",
"build:checkpoint-mongodb": "yarn workspace @agentdock/checkpoint-mongodb build",
"build:checkpoint-redis": "yarn workspace @agentdock/checkpoint-redis build",
"build:models": "yarn workspace @agentdock/models build"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"prettier": "^3.5.3"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}