forked from OriginTrail/dkg-integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 740 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 740 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
{
"name": "@origintrail/dkg-integrations-registry",
"version": "0.1.0",
"private": true,
"description": "Schema, validator, and security checks for the official DKG integrations registry.",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"validate": "node scripts/validate.mjs",
"security-checks": "node scripts/security-checks.mjs integrations/dkg-hello-world.json integrations/cursor-mcp-dkg.json",
"check": "node scripts/validate.mjs && echo \"\\nSchema validation passed.\""
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/OriginTrail/dkg-integrations.git"
}
}