-
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.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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": "looopy",
"version": "0.2.0",
"description": "Dispatch workflows as fire-and-forget background Claude runs",
"keywords": [
"claude",
"claude-code",
"cli",
"workflow",
"automation",
"background-jobs",
"agents"
],
"homepage": "https://github.com/LiquidBuiltIt/looopy#readme",
"bugs": "https://github.com/LiquidBuiltIt/looopy/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/LiquidBuiltIt/looopy.git"
},
"license": "MIT",
"author": "LiquidBuiltIt",
"type": "module",
"bin": {
"looopy": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}