-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.16 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
{
"name": "a2api",
"private": true,
"version": "0.1.0",
"description": "A2API: agent-generated controlled APIJSON CRUD with A2UI-style bindings",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build -w @a2api/protocol && npm run build -w @a2api/runtime && npm run build -w @a2api/chat-demo && npm run build -w @a2api/admin",
"test": "npm run build -w @a2api/protocol && npm run test -w @a2api/protocol && npm run test -w @a2api/runtime && npm run test -w @a2api/admin",
"test:e2e": "npm run test:e2e -w @a2api/admin",
"test:ui": "bash e2e/run-ui.sh",
"test:ui:headed": "HEADED=1 SLOW_MO=500 bash e2e/run-ui.sh --headed",
"dev": "npm run dev -w @a2api/chat-demo",
"dev:admin": "npm run dev -w @a2api/admin",
"typecheck": "npm run typecheck -w @a2api/protocol && npm run typecheck -w @a2api/runtime && npm run typecheck -w @a2api/chat-demo && npm run typecheck -w @a2api/admin"
},
"devDependencies": {
"@playwright/test": "^1.53.2"
},
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.62.2",
"@rollup/rollup-darwin-x64": "^4.62.2"
}
}