-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "mr-mdma",
"private": true,
"packageManager": "pnpm@10.6.0",
"type": "module",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "biome format --write .",
"format:check": "biome format .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"demo": "pnpm --filter @mobile-reality/mdma-demo dev",
"eval": "pnpm --filter @mobile-reality/mdma-evals eval",
"eval:custom": "pnpm --filter @mobile-reality/mdma-evals eval:custom",
"eval:conversation": "pnpm --filter @mobile-reality/mdma-evals eval:conversation",
"eval:prompt-builder": "pnpm --filter @mobile-reality/mdma-evals eval:prompt-builder",
"eval:flows": "pnpm --filter @mobile-reality/mdma-evals eval:flows",
"eval:all": "pnpm --filter @mobile-reality/mdma-evals eval:all",
"eval:view": "pnpm --filter @mobile-reality/mdma-evals eval:view"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.27.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
}
}