-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
{
"name": "xops",
"version": "0.1.0",
"private": true,
"description": "Your 24/7 DevOps Copilot that actually does the work",
"repository": {
"type": "git",
"url": "https://github.com/agenticops/xops"
},
"license": "Apache-2.0",
"bin": {
"xops": "./apps/cli/bin/xops"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"cli": "bun run apps/cli/src/index.ts",
"web": "cd apps/web && XOPS_GATEWAY=http://localhost:${XOPS_PORT:-18789} bun run dev"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.2.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"packageManager": "bun@1.1.0",
"engines": {
"node": ">=20.0.0"
}
}