-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "loopkit",
"version": "0.1.0",
"description": "The open-source standard for autonomous AI agent loops. Compose. Verify. Deploy.",
"keywords": ["loop-engineering", "agent", "ai-agent", "automation", "workflow"],
"homepage": "https://github.com/mgj/loopkit",
"license": "MIT",
"contributors": [
{ "name": "it-xian", "url": "https://github.com/it-xian" }
],
"type": "module",
"bin": {
"loopkit": "./dist/cli.js"
},
"files": [
"dist",
"loops",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.0.0",
"js-yaml": "^4.1.0",
"zod": "^3.23.0",
"chalk": "^5.3.0",
"ora": "^8.0.0"
},
"devDependencies": {
"typescript": "^5.5.0",
"tsx": "^4.16.0",
"@types/node": "^20.14.0",
"@types/js-yaml": "^4.0.9",
"vitest": "^1.6.0",
"eslint": "^9.0.0"
}
}