forked from magnitudedev/magnitude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 6.04 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 6.04 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
{
"name": "magnitude",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": [
"cli",
"desktop",
"web",
"inference",
"integrations/*",
"packages/*"
],
"scripts": {
"bootstrap": "bun scripts/bootstrap.ts",
"dev": "bun run scripts/dev.ts",
"devl": "bun run dev:version && bun run dev:client:local",
"dev:version": "bun run packages/version/scripts/generate-version.ts --dev",
"dev:client": "bun run cli/src/index.tsx",
"dev:client:local": "MAGNITUDE_USE_LOCAL=1 bun run cli/src/index.tsx",
"dev:pi": "bun run scripts/dev-pi.ts",
"acn:dash": "bun run --cwd packages/acn-dashboard dashboard",
"build": "bun run packages/version/scripts/generate-version.ts && turbo build",
"build:release": "bun run icn:catalog:build-bundle && bun run packages/release/scripts/build/host.ts",
"test:release-bootstrap": "bun run packages/release/scripts/test-bootstrap.ts",
"simulate:distribution": "bun run packages/version/scripts/generate-version.ts && bun run packages/release/scripts/simulate-distribution.ts",
"typecheck": "bunx tsc --noEmit -p scripts/tsconfig.release.json && bunx tsc --noEmit -p scripts/tsconfig.dev-pi.json && turbo typecheck",
"test": "bun run packages/version/scripts/generate-version.ts && bun test",
"cache:clear": "bun run scripts/clear-derived-cache.ts assessments",
"cache:clear:all": "bun run scripts/clear-derived-cache.ts all",
"cache:clear:assessments": "bun run scripts/clear-derived-cache.ts assessments",
"onboarding:reset": "bun run scripts/reset-onboarding.ts",
"design-docs": "bun run scripts/design-docs.ts",
"session": "bun run --cwd evals session",
"benchmark": "bun run packages/inference-benchmark/src/cli.ts",
"tbench": "bun run evals/tbench/cli.ts",
"dash": "bun run --cwd packages/tracing dashboard",
"events": "cat ~/.magnitude/logs/events.jsonl",
"events:tail": "tail -f ~/.magnitude/logs/events.jsonl",
"events:copy": "bun run scripts/copy-file-to-clipboard.ts ~/.magnitude/logs/events.jsonl \"Events copied to clipboard\"",
"logs": "bun session logs",
"logs:tail": "bun session logs --tail",
"logs:copy": "bun session logs --copy",
"cs": "changeset",
"changeset": "changeset",
"version": "bun run packages/release/scripts/apply-changesets-version.ts",
"publish": "bun run packages/release/scripts/publish-npm.ts",
"pre:alpha": "changeset pre enter alpha",
"pre:beta": "changeset pre enter beta",
"pre:exit": "changeset pre exit",
"prepare": "bun run packages/version/scripts/generate-version.ts && effect-language-service patch",
"els": "effect-language-service",
"web": "bun run dev:version && bun run web/scripts/dev-server.ts",
"desktop:setup": "bun run --cwd desktop setup",
"desktop": "bun run dev:version && cd desktop && bun run dev",
"icn:generate": "bun run --cwd packages/icn-protocol generate",
"icn:check-generated": "bun run --cwd packages/icn-protocol check-generated",
"icn:openapi": "cargo run --manifest-path inference/Cargo.toml -p icn-api --bin export-openapi --",
"icn:verify-native-pin": "bun run inference/scripts/verify-native-pin.ts",
"icn:check": "cargo check --manifest-path inference/Cargo.toml --workspace",
"icn:build": "bun run inference/scripts/build-local.ts",
"icn:build:reference": "bun run --cwd inference build:reference",
"icn:build:candidate": "bun run --cwd inference build:candidate --",
"icn:benchmark": "bun run --cwd inference benchmark --",
"icn:benchmark:validate": "bun run --cwd inference benchmark:validate",
"icn:parity": "bun run --cwd inference parity --",
"icn:parity:validate": "bun run --cwd inference parity:validate --",
"icn:parity:list": "bun run --cwd inference parity:list --",
"icn:parity:models": "bun run --cwd inference parity:models --",
"icn:parity:models:verify": "bun run --cwd inference parity:models:verify --",
"icn:parity:models:fetch": "bun run --cwd inference parity:models:fetch --",
"icn:parity:test:ts": "bun run --cwd inference parity:test:ts",
"icn:fit": "bun run --cwd inference fit --",
"icn:test": "cargo test --manifest-path inference/Cargo.toml --workspace",
"icn:dev": "cargo run --manifest-path inference/Cargo.toml -p icn-server -- serve --fake",
"icn:serve": "bun run inference/scripts/build-local.ts --serve",
"icn:doctor": "cargo run --manifest-path inference/Cargo.toml -p icn-server -- doctor",
"icn:version": "cargo run --manifest-path inference/Cargo.toml -p icn-server -- version --json",
"icn:catalog:update": "cargo run --manifest-path inference/Cargo.toml -p icn-catalog -- update-lock --output inference/catalog/models.lock.json --model-store ~/.magnitude/models --cache-root ~/.magnitude/cache",
"icn:catalog:build-bundle": "cargo run --manifest-path inference/Cargo.toml -p icn-catalog -- build-bundle --output inference/target/catalog-inputs/model-planner-inputs.bundle --model-store ~/.magnitude/models --cache-root ~/.magnitude/cache"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@effect/language-service": "^0.84.1",
"@effect/opentelemetry": "0.63.0",
"@eslint/js": "^10.0.1",
"@opentelemetry/exporter-trace-otlp-http": "0.219.0",
"@types/bun": "1.3.14",
"@types/mdast": "^4.0.4",
"eslint": "^10.6.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.62.1"
},
"dependencies": {
"beautiful-mermaid": "^0.1.3",
"mdast-util-from-markdown": "^2.0.3",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-wiki-link": "^2.0.1"
},
"resolutions": {
"effect": "3.21.2",
"@effect/platform": "0.96.1"
},
"trustedDependencies": [
"electron",
"protobufjs",
"sqlite3"
],
"patchedDependencies": {
"just-git@1.7.0": "patches/just-git@1.7.0.patch",
"@changesets/assemble-release-plan@6.0.10": "patches/@changesets%2Fassemble-release-plan@6.0.10.patch",
"@effect-atom/atom@0.5.3": "patches/@effect-atom%2Fatom@0.5.3.patch"
}
}