-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 6.84 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 6.84 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
140
141
142
143
144
{
"name": "1helm",
"productName": "1Helm",
"version": "0.0.41",
"private": true,
"type": "module",
"license": "AGPL-3.0-only",
"description": "1Helm is the self-hosted home for durable AI employees: one resident, one private computer, compounding memory and skills, and Skipper for every boundary.",
"author": {
"name": "Joseph Yaksich",
"email": "build@1helm.com"
},
"main": "desktop/main.cjs",
"scripts": {
"assets:brand": "node scripts/generate-brand-assets.cjs",
"assets:mobile": "node scripts/generate-mobile-assets.mjs",
"assets:screenshots": "node scripts/capture-user-guide-screenshots.mjs && node scripts/generate-readme-assets.cjs",
"assets:readme": "node scripts/generate-readme-assets.cjs",
"postinstall": "node scripts/ensure-node-pty-helper.cjs",
"build:js": "esbuild src/client/app.ts --bundle --format=esm --outfile=public/bundle.js --loader:.css=css --minify && node scripts/self-host-excalidraw.mjs",
"build:css": "tailwindcss -i src/client/styles.css -o public/app.css --minify",
"build:stamp": "node src/build/stamp.mjs",
"build:excalidraw": "node scripts/copy-excalidraw-assets.mjs",
"build:sidecar": "esbuild src/server/photon-sidecar.mjs --bundle --platform=node --format=esm --outfile=desktop/photon-sidecar.bundle.mjs --minify --banner:js=\"import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);\"",
"build": "npm run build:excalidraw && npm run build:js && npm run build:css && npm run build:sidecar && npm run build:stamp",
"mobile:sync": "node scripts/sync-mobile-version.mjs && npm run assets:mobile && npm run build && cap sync",
"mobile:check": "npm run typecheck && node --test test/mobile.mjs && cap doctor android",
"start": "node --disable-warning=ExperimentalWarning src/server/index.ts",
"dev": "npm run build && npm start",
"preview": "node scripts/preview.mjs",
"watch:js": "esbuild src/client/app.ts --bundle --format=esm --outfile=public/bundle.js --loader:.css=css --watch",
"watch:css": "tailwindcss -i src/client/styles.css -o public/app.css --watch",
"typecheck": "tsc --noEmit && tsc -p cloudflare/tsconfig.json --noEmit",
"test:native": "node test/native-world.mjs",
"test:thread-audit": "node test/thread-audit.mjs",
"test:routing": "node --test test/routing.mjs",
"test:onboarding-browser": "node test/onboarding-browser.mjs",
"test:brief-browser": "node test/brief-regressions-browser.mjs",
"test:production-browser": "node test/production-browser.mjs",
"test:terminal-browser": "node --test test/terminal-reconnect-browser.mjs",
"test:feedback-browser": "node --test test/feedback-browser.mjs",
"test:site": "node --test test/site.mjs",
"test:delivery": "node --test test/delivery-status.mjs test/cleanup-report.mjs test/delivery-governance.mjs",
"test:phase1": "node --test test/phase1-tools.mjs test/delivery-status.mjs test/cleanup-report.mjs",
"test:phase2": "node --test test/phase2-candidate.mjs test/delivery-status.mjs",
"test:phase3": "node --test test/phase3-promotion.mjs test/site-stable-manifest.mjs",
"test:phase4": "node --test test/phase4-platform-acceptance.mjs test/phase3-promotion.mjs",
"test:phase5": "node --test test/phase5-artifacts.mjs test/phase4-platform-acceptance.mjs test/phase3-promotion.mjs test/site-stable-manifest.mjs",
"test:fast": "node scripts/run-fast-tests.mjs",
"test:phase6": "node --test test/phase6-modules.mjs test/autonomy-platform.mjs test/sweep-fleet-telemetry.mjs",
"delivery:status": "node scripts/delivery-status.mjs",
"stable:status": "node scripts/promotion-status.mjs",
"cleanup:report": "node scripts/cleanup-report.mjs",
"artifacts:report": "node scripts/artifact-size-report.mjs",
"architecture:report": "node scripts/module-architecture-report.mjs",
"benchmark:autonomy": "node scripts/autonomy-benchmark.mjs",
"helm": "node scripts/1helm-cli.mjs",
"test:live": "node test/live-smoke.mjs",
"test": "node scripts/run-test-suite.mjs",
"ci": "npm run typecheck && npm run build && npm test",
"test:pipeline": "node test/pipeline.mjs",
"desktop": "electron .",
"package:mac": "node scripts/package-mac-dmg.cjs",
"package:dmg:release": "HELM_REQUIRE_NOTARIZATION=1 node scripts/package-mac-dmg.cjs",
"package:channel-image": "bash scripts/build-oci-channel-image.sh",
"package:linux": "node scripts/package-linux-host.mjs",
"package:android:release": "node scripts/package-android-apk.mjs",
"package:ios:release": "node scripts/package-ios-ipa.mjs",
"test:desktop": "node --test test/desktop.mjs",
"test:channel-computers:mac": "node scripts/mac-channel-computer-acceptance.mjs"
},
"dependencies": {
"@aparajita/capacitor-secure-storage": "^8.0.0",
"@capacitor/android": "^8.4.2",
"@capacitor/app": "^8.0.1",
"@capacitor/browser": "^8.0.1",
"@capacitor/core": "^8.4.2",
"@capacitor/ios": "^8.4.2",
"@capacitor/keyboard": "^8.0.1",
"@capacitor/push-notifications": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.1",
"@codemirror/lang-css": "6.3.1",
"@codemirror/lang-html": "6.4.11",
"@codemirror/lang-javascript": "6.2.5",
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-markdown": "6.5.1",
"@codemirror/lang-python": "6.2.1",
"@codemirror/lang-sql": "6.10.0",
"@codemirror/lang-yaml": "6.1.3",
"@excalidraw/excalidraw": "0.18.1",
"@gitcommit90/rerouted": "https://github.com/gitcommit90/rerouted/releases/download/v0.5.10/ReRouted-0.5.10-linux-node.tgz",
"@opencoredev/loginwithchatgpt-server": "^0.2.0",
"codemirror": "6.0.2",
"docx": "9.7.1",
"node-pty": "^1.1.0",
"pdf-lib": "^1.17.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"spectrum-ts": "8.0.0",
"ws": "^8.21.1",
"y-codemirror.next": "0.3.5",
"y-websocket": "1.5.4",
"yjs": "13.6.31"
},
"devDependencies": {
"@capacitor/cli": "^8.4.2",
"@cloudflare/workers-types": "^5.20260722.1",
"@electron/osx-sign": "2.6.0",
"@electron/packager": "20.0.3",
"@tailwindcss/cli": "^4.3.2",
"@types/node": "^26.1.1",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/ws": "^8.18.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"electron": "43.1.1",
"esbuild": "^0.28.1",
"puppeteer": "^25.3.0",
"sharp": "^0.35.3",
"typescript": "^7.0.2",
"wrangler": "^4.113.0"
},
"overrides": {
"@excalidraw/excalidraw": {
"nanoid": "3.3.11"
},
"@excalidraw/mermaid-to-excalidraw": {
"nanoid": "5.0.9"
},
"lodash-es": "4.18.1",
"sharp": "$sharp",
"ws": "$ws"
},
"repository": {
"type": "git",
"url": "https://github.com/gitcommit90/1Helm.git"
},
"bugs": {
"url": "https://github.com/gitcommit90/1Helm/issues"
},
"homepage": "https://1helm.com"
}