-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
55
56
57
{
"name": "@devran-ai/kit",
"version": "5.2.8",
"description": "Trust-grade AI development framework — zero-dependency runtime engine for agent orchestration, workflow governance, and skill management.",
"main": "bin/kit.js",
"bin": {
"kit": "./bin/kit.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"preversion": "npm test",
"version": "node scripts/sync-version.js && git add -A -- . ':!.agent/engine/identity.json'",
"prepublishOnly": "node scripts/clean-identity.js",
"postinstall": "echo 'Devran AI Kit installed. Run: kit init'"
},
"keywords": [
"ai",
"agents",
"gemini",
"claude",
"devran-ai",
"kit",
"governance",
"development",
"workflow",
"skills",
"commands",
"devtools",
"productivity",
"cli"
],
"author": "Emre Dursun <info.emredursun@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devran-ai/kit.git"
},
"bugs": {
"url": "https://github.com/devran-ai/kit/issues"
},
"homepage": "https://github.com/devran-ai/kit#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"bin/",
"lib/",
".agent/",
"README.md",
"LICENSE"
],
"devDependencies": {
"vitest": "^4.1.0"
}
}