-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 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
{
"name": "destin-protocol",
"version": "0.1.1",
"description": "A decentralized protocol for agent trust, dialogue, and influence in open multi-agent systems.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"commit": "cz",
"lint": "markdownlint '**/*.md'",
"lint:markdown": "markdownlint '**/*.md'",
"format": "prettier --write '**/*.{md,json,yml}' --ignore-path .prettierignore",
"format:check": "prettier --check '**/*.{md,json,yml}' --ignore-path .prettierignore",
"validate-schemas": "node protocol-data/validate-schemas.js",
"validate-samples": "node protocol-data/validate-samples.js"
},
"keywords": [
"agent-protocol",
"multi-agent-systems",
"reputation-scoring",
"trust-framework",
"agent-governance",
"decentralized-identity",
"dialogue-systems",
"context-aware-ai",
"negotiation-protocol",
"open-specification"
],
"author": "Arvind Ravulavaru <arvind.ravulavaru@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"markdownlint-cli": "^0.45.0",
"prettier": "^3.3.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/destin-protocol/destin-protocol.git"
},
"bugs": {
"url": "https://github.com/destin-protocol/destin-protocol/issues"
},
"homepage": "https://github.com/destin-protocol/destin-protocol#readme"
}