forked from OTT-Cybersecurity-LLC/lyrie-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.93 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
{
"name": "lyrie-agent",
"version": "0.1.0",
"description": "The world's first autonomous AI agent with built-in cybersecurity",
"author": "OTT Cybersecurity LLC <dev@lyrie.ai> (https://lyrie.ai)",
"license": "MIT",
"packageManager": "bun@1.3.11",
"repository": {
"type": "git",
"url": "https://github.com/lyrie-ai/lyrie-agent.git"
},
"homepage": "https://lyrie.ai",
"workspaces": [
"packages/core",
"packages/gateway",
"packages/mcp",
"packages/ui"
],
"keywords": [
"ai",
"agent",
"autonomous",
"cybersecurity",
"llm",
"assistant",
"security"
],
"scripts": {
"start": "bun run scripts/start-all.ts",
"dev": "bun run --watch packages/core/src/index.ts",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"shield:build": "cd packages/shield && cargo build --release",
"shield:test": "cd packages/shield && cargo test",
"migrate": "bun run scripts/migrate.ts",
"migrate:detect": "bun run scripts/migrate.ts --detect",
"migrate:openclaw": "bun run scripts/migrate.ts --from openclaw",
"migrate:hermes": "bun run scripts/migrate.ts --from hermes",
"migrate:autogpt": "bun run scripts/migrate.ts --from autogpt",
"migrate:all": "bun run scripts/migrate.ts --from all",
"doctor": "bun run scripts/doctor.ts",
"doctor:json": "bun run scripts/doctor.ts --json",
"release:notes": "bash scripts/release/notes.sh",
"pairing": "bun run scripts/pairing.ts",
"mcp": "bun run packages/mcp/src/index.ts",
"edits": "bun run scripts/edits.ts",
"understand": "bun run scripts/understand.ts",
"scan": "bun run scripts/scan.ts",
"intel": "bun run scripts/intel.ts",
"proxy": "bun run scripts/proxy.ts",
"tools": "bun run scripts/tools.ts",
"backend": "bun run scripts/backend.ts"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^6.0.3",
"bun-types": "latest"
}
}