-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "pagent",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Hosted UI rendering for terminal-bound AI agents — monorepo root",
"license": "MIT",
"workspaces": [
"apps/api",
"apps/web",
"apps/mcp"
],
"scripts": {
"dev": "concurrently -n api,web -c blue,magenta \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "npm -w @pagent/api run dev",
"dev:web": "npm -w @pagent/web run dev",
"build:web": "npm -w @pagent/web run build",
"build:mcp": "esbuild apps/mcp/server.ts --bundle --platform=node --format=esm --target=node22 --outfile=apps/mcp/server.bundle.js --banner:js='// Generated by `npm run build:mcp` from server.ts. Do not edit by hand.'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start:api": "npm -w @pagent/api run start",
"smoke": "node apps/mcp/smoke.mjs",
"typecheck": "tsc --noEmit -p apps/api && tsc --noEmit -p apps/web && tsc --noEmit -p apps/mcp",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^9.1.0",
"esbuild": "0.28.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^14.0.0",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
},
"overrides": {
"protobufjs": "^8.2.0"
}
}