-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 889 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 889 Bytes
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
{
"name": "codemode-monorepo",
"private": true,
"scripts": {
"build": "pnpm -r run build",
"build:codemode": "pnpm --filter @robinbraemer/codemode build",
"build:llrt": "pnpm --filter @robinbraemer/llrt build",
"build:llrt:native": "pnpm --filter @robinbraemer/llrt build:native",
"benchmark:executors": "pnpm --filter @robinbraemer/codemode benchmark:executors",
"dev": "pnpm --filter @robinbraemer/codemode dev",
"test": "pnpm -r run test",
"test:llrt": "pnpm --filter @robinbraemer/llrt test",
"test:watch": "pnpm --filter @robinbraemer/codemode test:watch",
"lint": "oxlint && pnpm -r run typecheck",
"ci": "pnpm run lint && pnpm run test && pnpm run build"
},
"devDependencies": {
"oxlint": "^1.50.0",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"isolated-vm",
"esbuild"
]
}
}