-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.24 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "proagentstore-platform-monorepo",
"private": true,
"type": "module",
"version": "0.0.0",
"description": "SDK + CLI + compliance + backend for server-powered AI agents on proagentstore.online",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ProAgentStore/platform.git"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"overrides": {
"@modelcontextprotocol/sdk": "1.29.0",
"hono": "^4.12.34",
"undici": "^7.28.0",
"ws": "^8.21.0",
"fast-uri": "^3.1.4",
"postcss": "^8.5.18",
"js-yaml": "^4.3.0",
"ip-address": "^10.3.1",
"body-parser": "^2.3.0",
"@hono/node-server": "^2.0.5"
},
"auditConfig": {
"//": "Each entry is a REACHABILITY claim with evidence, not a severity opinion. SECURITY.md 'Accepted dependency advisories' carries the dependency path, why the vulnerable code cannot run here, and what would unblock taking the upgrade. Re-check the reasoning whenever the dependency moves.",
"ignoreGhsas": [
"GHSA-f88m-g3jw-g9cj",
"GHSA-qwww-vcr4-c8h2",
"GHSA-g7r4-m6w7-qqqr"
]
}
},
"scripts": {
"build": "pnpm -r build",
"docs:build": "zensical build --strict && node scripts/clean-generated-docs.mjs",
"typecheck": "pnpm --filter @proagentstore/sdk build && pnpm -r typecheck",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:watch": "vitest",
"openapi:coverage": "node scripts/openapi-coverage.mjs",
"mcp:parity": "node scripts/check-mcp-parity.mjs",
"mcp:parity:gaps": "node scripts/check-mcp-parity.mjs --gaps",
"size:check": "node scripts/check-file-size.mjs",
"branches:prune": "node scripts/prune-agent-branches.mjs",
"docs:drift": "node scripts/docs-drift.mjs",
"lint": "biome check .",
"format": "biome format --write .",
"vcqa": "pnpm --filter @proagentstore/sdk build && npx --yes @vibecodeqa/cli@0.53.1 --skip-tests ."
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@playwright/test": "^1.60.0",
"@vitest/coverage-v8": "3.2.6",
"typescript": "^5.7.0",
"vitest": "^3.2.4"
}
}