-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.36 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.36 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
{
"name": "@agentclientprotocol/sdk",
"version": "0.16.1",
"publishConfig": {
"access": "public"
},
"description": "The Agent Client Protocol (ACP) is a protocol that standardizes communication between *code editors* (interactive programs for viewing and editing source code) and *coding agents* (programs that use generative AI to autonomously modify code).",
"homepage": "https://github.com/agentclientprotocol/typescript-sdk#readme",
"bugs": {
"url": "https://github.com/agentclientprotocol/typescript-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentclientprotocol/typescript-sdk.git"
},
"license": "Apache-2.0",
"author": "Zed Industries",
"files": [
"typescript",
"dist",
"schema/schema.json",
"LICENSE-APACHE"
],
"type": "module",
"main": "dist/acp.js",
"types": "dist/acp.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"test": "vitest run",
"generate": "node scripts/generate.js",
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"spellcheck": "./scripts/spellcheck.sh",
"spellcheck:fix": "./scripts/spellcheck.sh --write-changes",
"check": "npm run lint && npm run format:check && npm run spellcheck && npm run build && npm run test && npm run docs:ts:verify",
"docs:ts:build": "cd src && typedoc && echo 'TypeScript documentation generated in ./src/docs'",
"docs:ts:dev": "concurrently \"cd src && typedoc --watch --preserveWatchOutput\" \"npx http-server src/docs -p 8081\"",
"docs:ts:verify": "cd src && typedoc --emit none && echo 'TypeDoc verification passed'"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@hey-api/openapi-ts": "^0.94.3",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"http-server": "^14.1.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typedoc-github-theme": "^0.4.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"zod": "^3.25.0 || ^4.0.0"
}
}