-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.6 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.6 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
{
"name": "@agentclientprotocol/schema",
"version": "0.0.0",
"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/agent-client-protocol#readme",
"bugs": {
"url": "https://github.com/agentclientprotocol/agent-client-protocol/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentclientprotocol/agent-client-protocol.git"
},
"license": "Apache-2.0",
"author": "Zed Industries",
"files": [
"schema/schema.json",
"LICENSE"
],
"type": "module",
"scripts": {
"generate:json-schema": "cargo run --bin generate",
"generate:json-schema:unstable": "cargo run --bin generate --features unstable",
"generate": "npm run generate:json-schema && npm run generate:json-schema:unstable && npm run format",
"format": "prettier --write --log-level warn . && cargo fmt",
"format:check": "prettier --check . && cargo fmt -- --check",
"spellcheck": "./scripts/spellcheck.sh",
"spellcheck:fix": "./scripts/spellcheck.sh --write-changes",
"generate:registry": "python3 scripts/generate_registry_docs.py",
"check": "cargo clippy --all-features && npm run format:check && npm run spellcheck && cargo test --all-features",
"docs": "cd docs && npx mint dev"
},
"devDependencies": {
"mint": "^4.2.417",
"prettier": "^3.8.1"
}
}