-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@openacp/cli",
"version": "2026.424.2",
"private": true,
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./testing": {
"types": "./dist/testing.d.ts",
"import": "./dist/testing.js"
}
},
"bin": {
"openacp": "dist/cli.js"
},
"scripts": {
"build": "tsc && mkdir -p dist/data && cp src/data/registry-snapshot.json dist/data/",
"build:publish": "tsx scripts/build-publish.ts",
"dev": "./scripts/dev-loop.sh",
"dev:loop": "./scripts/dev-loop.sh",
"start": "node dist/cli.js",
"debug": "OPENACP_DEBUG=true pnpm start 2>&1 | pino-pretty",
"test": "vitest run",
"test:watch": "vitest",
"build:ui": "cd ui && pnpm install --frozen-lockfile && pnpm build",
"build:dev": "pnpm build && npm link --force",
"prepare": "husky"
},
"homepage": "https://github.com/Open-ACP/OpenACP",
"repository": {
"type": "git",
"url": "https://github.com/Open-ACP/OpenACP"
},
"packageManager": "pnpm@10.5.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@agentclientprotocol/claude-agent-acp": "^0.24.2",
"@agentclientprotocol/sdk": "^0.16.0",
"@clack/prompts": "^1.1.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"diff": "^8.0.3",
"fastest-levenshtein": "^1.0.16",
"fastify": "^5.8.4",
"fastify-type-provider-zod": "~5.1.0",
"grammy": "^1.41.1",
"ignore": "^7.0.5",
"jsonwebtoken": "^9.0.3",
"micromatch": "^4.0.8",
"nanoid": "^5.0.0",
"node-wav": "^0.0.2",
"ogg-opus-decoder": "^1.7.3",
"ora": "^9.3.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"qrcode-terminal": "^0.12.0",
"sanitize-html": "^2.17.2",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@rolldown/binding-darwin-arm64": "1.0.0-rc.10",
"@types/diff": "^8.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/micromatch": "^4.0.10",
"@types/node": "^25.5.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/sanitize-html": "^2.16.1",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
}
}