-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "lambda-cli",
"version": "0.1.0",
"description": "Lambda CLI - Multi-agent development orchestration",
"main": "dist/cli.js",
"bin": {
"lambda": "./bin/lambda"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"clean": "rm -rf dist",
"test": "npx playwright test",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,css,md}'",
"typecheck": "tsc --noEmit"
},
"keywords": [
"lambda",
"cli",
"multi-agent",
"claude",
"ai",
"tmux",
"orchestration"
],
"author": "Adrian Carriger",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adriancarriger/lambda.git"
},
"homepage": "https://github.com/adriancarriger/lambda",
"bugs": {
"url": "https://github.com/adriancarriger/lambda/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.48.0",
"@types/node": "^20.10.0",
"eslint": "^9.39.2",
"prettier": "^3.4.0",
"tsx": "^4.6.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.55.0"
},
"engines": {
"node": ">=20"
}
}