-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@klever/agentic-environment",
"version": "0.0.0-unreleased",
"description": "Context-engineering CLI to initialize and operate multi-repository agentic development environments",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/klever-engineering/ke-agentic-dev-env.git"
},
"homepage": "https://github.com/klever-engineering/ke-agentic-dev-env#readme",
"bugs": {
"url": "https://github.com/klever-engineering/ke-agentic-dev-env/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"templates",
"addons",
"docs",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"bin": {
"klever": "src/cli.mjs",
"klever-agentic": "src/cli.mjs"
},
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node src/cli.mjs",
"test": "node --test"
},
"keywords": [
"agentic",
"agents",
"ai",
"context-engineering",
"developer-tooling",
"developer-experience",
"cli",
"mcp",
"template"
],
"author": "Klever Engineering",
"license": "MIT"
}