-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.55 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.55 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
{
"name": "microagentcomputer",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"openapi-typescript": "^7.13.0"
},
"scripts": {
"prepare": "husky",
"build:agentcomputer": "pnpm --filter ./packages/agentcomputer build",
"build:public-api-client": "pnpm --filter @microagentcomputer/public-api-client build",
"build:web": "pnpm --filter @microagentcomputer/web build",
"build:cli": "pnpm --filter aicomputer build",
"docs:agentcomputer-sdk": "pnpm --filter ./packages/agentcomputer docs:generate",
"check:import-web-cli-drift": "node scripts/check-import-web-cli-drift.mjs",
"check:public-computer-terminology": "node scripts/check-public-computer-terminology.mjs",
"check:generated-sdk-docs-drift": "git diff --exit-code -- apps/web/app/docs/generated/agentcomputer-sdk.json apps/web/app/docs/docs-search-data.json",
"typecheck:agentcomputer": "pnpm --filter ./packages/agentcomputer typecheck",
"typecheck:agentcomputer-examples": "pnpm --filter ./packages/agentcomputer typecheck:examples",
"typecheck:public-api-client": "pnpm --filter @microagentcomputer/public-api-client typecheck",
"typecheck:web": "pnpm --filter @microagentcomputer/web typecheck",
"typecheck:cli": "pnpm --filter aicomputer typecheck",
"lint:web": "pnpm --filter @microagentcomputer/web lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}