forked from mlx-node/mlx-node
-
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.8 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.8 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": "mlx-node",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"packages/core/npm/*",
"examples"
],
"type": "module",
"scripts": {
"build": "yarn build:native && yarn build:ts",
"build:native": "yarn workspace @mlx-node/core build",
"build:ts": "tsc -b",
"clean": "rm -rf packages/*/dist",
"lint": "vp lint",
"format": "vp fmt",
"test": "vp test",
"typecheck": "tsc -b",
"mlx": "oxnode packages/cli/src/cli.ts",
"bench:qwen35-mtp": "oxnode examples/qwen35-mtp-bench-matrix.ts",
"bench:qwen35-mtp:gate": "oxnode examples/qwen35-mtp-bench-matrix.ts qwen3.6-27b-nvfp4-mtp-oproj8 --depths default,1 --env-variants perf-flat,sparse-off,async-off --profile --gate safety",
"bench:qwen35-mtp:paged": "oxnode examples/qwen35-mtp-bench-matrix.ts qwen3.6-27b-nvfp4-mtp-oproj8 --depths 3 --env-variants paged-off,paged-on --include-paged-experimental --profile --gate paged-parity"
},
"devDependencies": {
"@ast-grep/napi": "^0.42.1",
"@mlx-node/cli": "workspace:*",
"@mlx-node/internal-tools": "workspace:*",
"@mlx-node/lm": "workspace:*",
"@mlx-node/privacy": "workspace:*",
"@mlx-node/server": "workspace:*",
"@mlx-node/trl": "workspace:*",
"@mlx-node/vlm": "workspace:*",
"@napi-rs/cli": "^3.6.2",
"@napi-rs/simple-git": "^0.1.22",
"@oxc-node/cli": "^0.1.0",
"@oxc-node/core": "^0.1.0",
"@std/toml": "npm:@jsr/std__toml@^1.0.11",
"@types/node": "^25.6.0",
"octokit": "^5.0.5",
"oxc-parser": "^0.126.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vite-plus": "^0.1.18",
"vitest": "^4.1.4"
},
"resolutions": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "yarn@4.13.0"
}