-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
{
"name": "@elizaos/os",
"version": "0.1.0",
"description": "elizaOS operating-system distributions, installers, and release infrastructure.",
"private": true,
"type": "module",
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=24.0.0"
},
"workspaces": [
"packages/os/homepage",
"packages/os/linux/installer",
"packages/os/setup",
"packages/os/shared-system",
"packages/os/usb-installer"
],
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint:check",
"format": "turbo run format",
"test": "turbo run test",
"test:release": "node --test packages/os/scripts/__tests__/*.test.mjs && bun test packages/os/scripts/__tests__/*.test.ts",
"migration:manifest": "node scripts/generate-migration-manifest.mjs",
"verify:layout": "node scripts/verify-os-repository-layout.mjs",
"verify": "bun run verify:layout && bun run typecheck && bun run lint && bun run test && bun run test:release",
"verify:linux": "bash packages/os/linux/elizaos/scripts/mkosi-lint.sh",
"verify:riscv64": "node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh",
"build:riscv64-artifacts": "node packages/scripts/run-bash-linux-only.mjs scripts/build-riscv64-artifacts.sh",
"check:riscv64-artifacts": "node packages/scripts/run-bash-linux-only.mjs scripts/check-riscv64-artifacts.sh"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/bun": "1.3.14",
"@types/node": "25.6.2",
"@typescript/native": "npm:typescript@^7.0.2",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"vitest": "4.1.5"
},
"overrides": {
"@biomejs/biome": "2.5.6",
"@elizaos/app-core": "2.0.11-beta.7",
"@elizaos/core": "2.0.11-beta.7",
"@elizaos/shared": "2.0.11-beta.7",
"@elizaos/ui": "2.0.11-beta.7",
"react": "19.2.5",
"react-dom": "19.2.5",
"rollup": "npm:@rollup/wasm-node@4.60.3"
}
}