-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 5.91 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 5.91 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "orrery",
"private": true,
"version": "0.2.0",
"workspaces": [
"packages/*"
],
"description": "A loop-native desktop tool for agent workflows.",
"author": "ObservedObserver",
"type": "module",
"main": "dist-electron/electron/main.js",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "npm run dev:app",
"dev:app": "npm run build:electron && concurrently -k \"vite --host 127.0.0.1 --port 48273 --strictPort\" \"tsc -p tsconfig.electron.json --watch --preserveWatchOutput\" \"wait-on http://127.0.0.1:48273 dist-electron/electron/main.js && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:48273 electron .\"",
"dev:web": "vite --host 127.0.0.1 --port 48273 --strictPort",
"dev:web:real": "npm run build:electron && concurrently -k \"tsc -p tsconfig.electron.json --watch --preserveWatchOutput\" \"node dist-electron/electron/runtimeHttpServerCli.js\" \"wait-on http://127.0.0.1:48274/api/runtime/config && cross-env VITE_ORRERY_RUNTIME_URL=http://127.0.0.1:48274 vite --host 127.0.0.1 --port 48273 --strictPort\"",
"dev:graph-ui": "npm run dev -w @looperators/agent-graph-ui",
"build:graph-ui": "npm run build -w @looperators/agent-graph-ui",
"test:graph-ui": "npm run test -w @looperators/agent-graph-ui",
"build:plugin-agent-loop-ui": "npm run build:graph-ui && tsc -p plugins/looperators-agent-loop/ui/tsconfig.json --noEmit && vite build --config plugins/looperators-agent-loop/ui/vite.config.ts",
"test:plugin-agent-loop-ui": "npm run build:plugin-agent-loop-ui && node --test --test-concurrency=4 plugins/looperators-agent-loop/tests/*.test.mjs",
"build": "npm run build:electron && tsc -b && vite build",
"build:electron": "tsc -p tsconfig.electron.json && node scripts/prune-electron-output.mjs",
"check:electron": "tsc -p tsconfig.electron.json --noEmit",
"format:src": "prettier --write src",
"lint": "oxlint",
"cli": "node scripts/orrery-cli.mjs",
"runtime:http": "npm run build:electron && node dist-electron/electron/runtimeHttpServerCli.js",
"runtime:http:serve": "node dist-electron/electron/runtimeHttpServerCli.js",
"emit": "node scripts/emit-external-event.mjs",
"test": "npm run test:kernel",
"test:kernel": "npm run build:electron && npm run test:kernel:node && npm run test:kernel:smoke",
"test:kernel:node": "node --test --test-concurrency=4 tests/runtime/*.test.mjs tests/graph-core/*.test.mjs",
"test:kernel:smoke": "node scripts/canvas-orchestration-smoke.mjs && node scripts/runtime-persistence-recovery.mjs && node scripts/membrane-validation.mjs && node scripts/codex-interaction-smoke.mjs",
"test:kernel:orchestration": "npm run build:electron && node scripts/canvas-orchestration-smoke.mjs",
"test:kernel:master-loop": "npm run build:electron && node --test tests/runtime/subscriptions.test.mjs",
"test:kernel:persistence": "npm run build:electron && node scripts/runtime-persistence-recovery.mjs",
"test:kernel:membrane": "npm run build:electron && node scripts/membrane-validation.mjs",
"test:kernel:codex-interaction": "npm run build:electron && node scripts/codex-interaction-smoke.mjs",
"test:ci:unit": "node --test --test-concurrency=4 tests/graph-core/*.test.mjs",
"test:ci": "npm run lint && npm run build && npm run test:ci:unit",
"acceptance:headless": "npm run build:electron && node scripts/acceptance-runner.mjs",
"acceptance:membrane": "npm run build:electron && node scripts/membrane-smoke.mjs",
"acceptance:electron": "npm run build:electron && node scripts/electron-typescript-acceptance.mjs",
"preview": "vite preview",
"start": "npm run build && electron .",
"dist:mac": "npm run build && electron-builder --mac dmg zip --arm64 --publish never",
"pack:mac": "npm run build && electron-builder --mac dir --arm64 --publish never"
},
"build": {
"appId": "com.observedobserver.looperators",
"productName": "looperators",
"artifactName": "looperators-${version}-mac-${arch}.${ext}",
"asar": true,
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"extraResources": [
{
"from": "dist-electron/electron/runtime/membraneMcpServer.js",
"to": "membraneMcpServer.js"
}
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
},
{
"target": "zip",
"arch": [
"arm64"
]
}
],
"icon": "icon.icns",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"minimumSystemVersion": "12.0"
},
"publish": [
{
"provider": "github",
"owner": "ObservedObserver",
"repo": "looperators",
"releaseType": "release"
}
]
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.191",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"@pierre/diffs": "^1.2.11",
"@tailwindcss/vite": "^4.3.1",
"@xyflow/react": "^12.11.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-updater": "^6.8.9",
"lucide-react": "^1.21.0",
"radix-ui": "^1.6.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.11.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"electron": "^42.5.0",
"electron-builder": "^26.15.7",
"oxlint": "^1.69.0",
"prettier": "^3.9.4",
"typescript": "~6.0.2",
"vite": "^8.1.0",
"wait-on": "^9.0.10"
}
}