-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 880 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 880 Bytes
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
{
"name": "otr-protocol",
"private": true,
"version": "4.1.0",
"description": "Open Trust Registry — Merchant trust verification protocol for AI agent commerce",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"conformance": "npx tsx conformance/runner.ts",
"lint": "eslint packages/*/src/**/*.ts",
"clean": "rm -rf packages/*/dist"
},
"keywords": [
"trust",
"ai-agent",
"commerce",
"merchant-verification",
"mcp",
"agentic-commerce"
],
"author": "ORBEXA <dev@orbexa.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yb48666-ctrl/OTR-Protocol-by-orbexa"
},
"devDependencies": {
"typescript": "^5.7.0",
"tsx": "^4.19.0",
"vitest": "^3.0.0",
"@types/node": "^22.0.0"
}
}