forked from derrickko/clify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 985 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 985 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
{
"name": "clify",
"version": "0.6.0",
"description": "Generate A+ Node.js CLIs from API documentation. Copies a hand-crafted exemplar (structurally inspired by google/agents-cli), mechanically substitutes API-specific content, and verifies via a deterministic validation gate.",
"type": "module",
"bin": {
"clify": "./bin/clify.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node scripts/check-plugin-version.mjs && node --test test/*.test.mjs",
"check-versions": "node scripts/check-plugin-version.mjs",
"test:exemplar": "cd examples/exemplar-cli && npm test",
"validate-exemplar": "node bin/clify.mjs validate examples/exemplar-cli",
"eval": "node bin/clify.mjs eval"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeyogi911/clify.git"
},
"homepage": "https://github.com/codeyogi911/clify",
"bugs": {
"url": "https://github.com/codeyogi911/clify/issues"
}
}