-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "aidevops",
"version": "3.1.0",
"description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
"type": "module",
"bin": {
"aidevops": "./bin/aidevops"
},
"scripts": {
"dev": "bun run .opencode/server/api-gateway.ts",
"dashboard": "bun run .opencode/server/mcp-dashboard.ts",
"quality": "bun run .opencode/tool/parallel-quality.ts",
"dspy:init": "dspyground init",
"dspy:dev": "dspyground dev",
"dspy:build": "dspyground build",
"install:python": "python3 -m venv python-env/dspy-env && source python-env/dspy-env/bin/activate && pip install -r requirements.txt",
"setup": "bun install && npm run install:python",
"setup:bun": "bun install",
"test": "bun test",
"typecheck": "tsc --noEmit",
"postinstall": "node scripts/npm-postinstall.cjs || true"
},
"keywords": [
"ai",
"devops",
"cli",
"automation",
"code-quality",
"git-workflow",
"mcp",
"llm",
"dspy",
"prompt-optimization",
"ai-agents"
],
"author": "Marcus Quinn <marcus@aidevops.sh>",
"license": "MIT",
"dependencies": {
"elysia": "^1.1.0"
},
"devDependencies": {
"@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
"@types/bun": "latest",
"secretlint": "^11.2.5",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux"
],
"files": [
"bin/",
"aidevops.sh",
"setup.sh",
"setup-modules/",
"VERSION",
"scripts/npm-postinstall.cjs",
"templates/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/marcusquinn/aidevops.git"
},
"bugs": {
"url": "https://github.com/marcusquinn/aidevops/issues"
},
"homepage": "https://aidevops.sh"
}