-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 4.25 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 4.25 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "lucid-agent-ide-harness",
"version": "0.0.0",
"private": true,
"license": "BUSL-1.1",
"author": "TechLead 187 LLC",
"description": "Security/provenance/memory harness built AROUND oh-my-pi (omp). Extend, never fork. See CLAUDE.md.",
"type": "module",
"bin": {
"lucid": "harness/launcher/lucid_acp.ts"
},
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p desktop/tsconfig.json && tsc --noEmit -p desktop/tsconfig.server.json",
"typecheck:desktop": "tsc --noEmit -p desktop/tsconfig.json",
"typecheck:desktop-server": "tsc --noEmit -p desktop/tsconfig.server.json",
"test": "bun test --path-ignore-patterns=\"desktop/release/**\" --path-ignore-patterns=\"vendor/**\" --path-ignore-patterns=\"lucidaddon_audit/**\"",
"demo-00": "bun run harness/scripts/demo00_omp_echo.ts && bun run harness/scripts/demo00_scanner.ts && bun run harness/scripts/demo00_failclosed.ts",
"demo-00:echo": "bun run harness/scripts/demo00_omp_echo.ts",
"demo-00:scanner": "bun run harness/scripts/demo00_scanner.ts",
"demo-00:failclosed": "bun run harness/scripts/demo00_failclosed.ts",
"demo-01": "bun run harness/scripts/demo01_contracts.ts",
"demo-02": "bun run harness/scripts/demo02_prefix_hash.ts",
"demo-P2.1": "python scanner-sidecar/demo_p2_1.py",
"demo-P2.3": "bun run harness/scripts/demo03_ingest.ts",
"demo-P2.4": "bun run harness/scripts/demo04_quarantine_hook.ts",
"demo-P3.1": "bun run harness/scripts/demo05_verification.ts",
"demo-P3.2": "bun run harness/scripts/demo06_telemetry_ingest.ts",
"demo-P4.1": "bun run harness/scripts/demo07_memory.ts",
"demo-P4.2": "bun run harness/scripts/demo08_compaction.ts",
"demo-P4.3": "bun run harness/scripts/demo09_promotion_gate.ts",
"demo-P5.1": "bun run harness/scripts/demo10_lineage.ts",
"demo-P5.2": "bun run harness/scripts/demo11_sandbox.ts",
"demo-P6.1": "bun run harness/scripts/demo12_remote_gate.ts",
"demo-P6.2": "bun run harness/scripts/demo13_safe_export.ts",
"demo-P7.1": "bun run harness/scripts/demo14_dashboards.ts",
"demo-P7.2": "bun run harness/scripts/demo15_replay_bench.ts",
"demo-P-LOC.1": "bun run harness/scripts/demo16_ai_loc.ts",
"demo-P8.1": "bun run harness/scripts/demo17_recall.ts",
"demo-P8.2": "bun run harness/scripts/demo18_turns.ts",
"demo-P-EXT.1": "bun run harness/scripts/demo19_lucid_launcher.ts",
"demo-P-CODE.1": "bun run harness/scripts/demo_pcode1.ts",
"demo-P-TPS.1": "bun run harness/scripts/demo_ptps1.ts",
"demo-P-SKILL.1": "bun run harness/scripts/demo_pskill1.ts",
"demo-P-RAG.1": "bun run harness/scripts/demo_prag1.ts",
"demo-P-RAG.1b": "bun run harness/scripts/demo_prag1b.ts",
"demo-P-RAG.1c": "bun run harness/scripts/demo_prag1c.ts",
"demo-P-BRIEF.1": "bun run harness/scripts/demo_pbrief1.ts",
"demo-P-BRIEF.2": "bun run harness/scripts/demo_pbrief2.ts",
"demo-P-STT.1": "bun run harness/scripts/demo_pstt1.ts",
"demo-P-VOICE.2": "bun run harness/scripts/demo_pvoice2.ts",
"demo-P-ASKSAGE.1": "bun run harness/scripts/demo_paskage1.ts",
"demo-P-ENT.1": "bun run harness/scripts/demo_pent1.ts",
"demo-P-AGENTFW.1": "bun run harness/scripts/demo_pagentfw1.ts",
"demo-P-MCP-GATE.1": "bun run harness/scripts/demo_pmcpgate1.ts",
"demo-P-NVIM.1": "bun run harness/scripts/demo_pnvim1.ts",
"dashboards": "bun run harness/scripts/materialize_dashboards.ts",
"omp:secure": "omp -e harness/omp/security_extension.ts -e harness/omp/token_speed_extension.ts",
"dashboard:tui": "bun run tools/dashboard_tui.ts",
"memory:tui": "bun run tools/memory_tui.ts",
"dashboard:web": "bun run tools/web/server.ts",
"acp:probe": "bun run tools/acp_probe.ts",
"desktop:web": "bun run desktop/dev.ts"
},
"dependencies": {
"@duckdb/node-api": "1.5.4-r.1",
"@huggingface/transformers": "^4.2.0",
"@oh-my-pi/pi-agent-core": "16.1.20",
"@oh-my-pi/pi-ai": "16.1.20",
"@oh-my-pi/pi-coding-agent": "16.1.20",
"@oh-my-pi/pi-utils": "16.1.20",
"arktype": "^2.2.1",
"dompurify": "^3.4.14",
"katex": "^0.17.0",
"marked": "^18.0.5",
"unpdf": "^1.6.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^6.0.3"
},
"trustedDependencies": []
}